?? errormessages.java
字號:
package bingo.shared;public class ErrorMessages { public static boolean DEBUG = false; public static void error(String message) { //XXX Do we really want to print non-fatal messages to stderr? System.err.print("BINGO: "); System.err.println(message); } public static void error(String message, Exception e) { if (DEBUG) { if (e != null) { e.printStackTrace(); } } //XXX Do we really want to print non-fatal messages to stderr? System.err.print("BINGO: "); System.err.println(message); } public static void fatalError(String message, Exception e) { if (DEBUG) { if (e != null) { e.printStackTrace(); } } System.err.print("BINGO: "); System.err.println(message); System.err.println("Exiting....."); System.exit(-1); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -