发布网友 发布时间:2022-04-25 22:13
共2个回答
热心网友 时间:2022-06-18 01:02
<1>.不要调用Thread类或Runnable对象的run方法。直接调用run方法只会执行同一个线程中的任务,而不会启动新的线程。应该调用Thread.start方法。这个方法将创建一个执行run方法的新线程。
<2>.interrupted和isInterrupted是两个非常相似的方法。interrupted方法是一个静态的方法。它检测当前的线程是否被中断。而且,会清除该线程的中断状态。
isInterrupted方法是一个实例方法。可用来检验是否有线程中断。调用这个方法不会改变中断状态。
<3>.interruptedException的catch字句做一些处理有什么好处的话。仍然有两种合理的选择。
void mySubTask()
{...
try{sleep(delay);}
catch(InterruptedException e) {Thread().currentThread().interrupt();}
....
}
或者用throws interruptedException标记的方法。
热心网友 时间:2022-06-18 01:02
deadlock 和 race condition