📄 例子十四.txt
字号:
class Daemon implements Runnable{
Thread A,B;
Daemon(){
A=new Thread(this);
B=new Thread(this);
}
public void run(){
if(Thread.currentThread()==A){
for(int i=0;i<8;i++){
System.out.println("i="+i) ;
try { Thread.sleep(1000);
}
catch(InterruptedException e) {}
}
}
else if(Thread.currentThread()==B){
while(true){
System.out.println("线程B是守护线程 ");
try{ Thread.sleep(1000);
}
catch(InterruptedException e){}
}
}
}
}
public class Example8_14{
public static void main(String args[ ]){
Daemon a=new Daemon ();
a.A.start();
a.B.setDaemon(true);
a.B.start();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -