DaemonThread.java
资源名称:Source.rar [点击查看]
上传用户:songled
上传日期:2022-07-14
资源大小:94k
文件大小:0k
源码类别:
进程与线程
开发平台:
Java
- public class DaemonThread extends Object implements Runnable {
- public void run() {
- System.out.println("entering run()");
- try {
- System.out.println("in run() - currentThread()=" +
- Thread.currentThread());
- while ( true ) {
- try { Thread.sleep(500); }
- catch ( InterruptedException x ) {}
- System.out.println("in run() - woke up again");
- }
- } finally {
- System.out.println("leaving run()");
- }
- }
- }