Java 多线程 操作
时间:2010-09-28 来源:Young跑跑
1。 不要直接调用Thread类或Runnable的run方法
线程中断状态
使用 thread.Interrupt
1。 正常运行时
- 检查IsInterrupted
2. 对一个阻塞线程调用interrupt方法,本次阻塞调用会中断,抛出InterruptedException
中断的含义:中断一个线程不过是引起他的注意,不会终止线程。
相关阅读 更多 +
时间:2010-09-28 来源:Young跑跑
1。 不要直接调用Thread类或Runnable的run方法
线程中断状态
使用 thread.Interrupt
1。 正常运行时
2. 对一个阻塞线程调用interrupt方法,本次阻塞调用会中断,抛出InterruptedException
中断的含义:中断一个线程不过是引起他的注意,不会终止线程。