Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- comic agile
- Software Engineering
- agile
- essay
- Linux
- erlang
- program
- programming_book
- Python
- django
- hbase
- management
- Italy
- Malaysia
- MySQL
- Java
- Book
- RFID
- history
- Programming
- Kuala Lumpur
- ubuntu
- France
- hadoop
- Artificial Intelligence
- leadership
- Book review
- QT
- web
- AI
Archives
- Today
- Total
conditional compile on java 본문
C의 #ifdef를 java에서 흉내내는 방법
http://cafe.naver.com/javacircle/43981
http://www.experts-exchange.com/Programming/Languages/Java/Q_11152787.html
http://ssami.tistory.com/272
http://weblogs.java.net/blog/schaefa/archive/2005/01/how_to_do_condi_1.html
http://cafe.naver.com/javacircle/43981
http://www.experts-exchange.com/Programming/Languages/Java/Q_11152787.html
public static final boolean DEBUG = true;
if(DEBUG) { System.out.println("Debugging on"); }
is functionally equivalent to
#define DEBUG 1
#if DEBUG
cout << "Debugging on" << endl;
#endif
http://java.sys-con.com/node/36226http://ssami.tistory.com/272
http://weblogs.java.net/blog/schaefa/archive/2005/01/how_to_do_condi_1.html
Comments