知识大全 线程中断(interrupt)使用方法
Posted 知
篇首语:谷要自长,人要自强。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 线程中断(interrupt)使用方法相关的知识,希望对你有一定的参考价值。
前日研究Java线程问题 发现很多书上都没有提到interrput()方法 提到的也说用interrupt()方法无法实现线程中断 可是 经过我的不断尝试 竟然使用interrupt()方法和isInterrupted()方法实现了线程的中断 如果这个方法可以 那么除了使用共享变量的方式可以中断线程之外又多了一种中断线程的方法 希望这个方法对大家有所帮助
class ThreadA extends Thread int count = ; public void run() System out println(getName() + 将要运行 ); while (!this isInterrupted()) System out println(getName() + 运行中 + count++); try Thread sleep( ); // 休眠 毫秒 catch(InterruptedException e) // 退出阻塞态时将捕获异常 System out println(getName()+ 从阻塞态中退出 ); this interrupt(); // 改变线程状态 使循环结束 System out println(getName() + 已经终止! ); class ThreadDemo public static void main(String argv[]) throws InterruptedException ThreadA ta = new ThreadA(); ta setName( ThreadA ); ta start(); Thread sleep( );// 主线程休眠 毫秒 等待其他线程执行 System out println(ta getName()+ 正在被中断 ); ta interrupt(); // 中断线程ThreadA
cha138/Article/program/Java/gj/201311/27604相关参考