📄 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 + -