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 |
Tags
- Italy
- Linux
- essay
- Python
- QT
- Java
- agile
- history
- Malaysia
- comic agile
- psychology
- web
- management
- MySQL
- leadership
- ubuntu
- Kuala Lumpur
- Software Engineering
- programming_book
- RFID
- django
- Book review
- Spain
- Book
- program
- Programming
- hadoop
- hbase
- erlang
- France
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