中断方法测试
Posted 512178509
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中断方法测试相关的知识,希望对你有一定的参考价值。
package com.fh.interview; /** * 中断测试 * * @author * @create 2018-05-27 下午3:18 **/ public class InterruptDemo { public static void main(String[] args) { Thread sleepThread = new Thread(){ @Override public void run() { try { Thread.sleep(1000); }catch (Exception e){ } } }; Thread busyThread = new Thread(){ @Override public void run() { while (true); } }; sleepThread.start(); busyThread.start(); //当对象调用wait,sleep,join的时候,调用中断会清除标志位 sleepThread.interrupt(); busyThread.interrupt(); while (sleepThread.isInterrupted()); System.out.println("sleep:"+sleepThread.isInterrupted()); System.out.println("busy:"+busyThread.isInterrupted()); } }
以上是关于中断方法测试的主要内容,如果未能解决你的问题,请参考以下文章