DaemonThread.java
上传用户:songled
上传日期:2022-07-14
资源大小:94k
文件大小:0k
源码类别:

进程与线程

开发平台:

Java

  1. public class DaemonThread extends Object implements Runnable {
  2. public void run() {
  3. System.out.println("entering run()");
  4. try {
  5. System.out.println("in run() - currentThread()=" + 
  6. Thread.currentThread());
  7. while ( true ) {
  8. try { Thread.sleep(500); } 
  9. catch ( InterruptedException x ) {}
  10. System.out.println("in run() - woke up again");
  11. }
  12. } finally {
  13. System.out.println("leaving run()");
  14. }
  15. }
  16. }