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