⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mydaemon.java

📁 java 完全探索的随书源码
💻 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 + -