?? mydaemon.java
字號:
public class MyDaemon implements Runnable{ // Default Constructor public MyDaemon() { super(); } // Implement the required method from the Runnable interface public void run() { // Go into an infinite loop. This is normally not a good idea while( true ) { // Print this out each time through the loop System.out.println( "Still Running..." ); } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -