zoukankan      html  css  js  c++  java
  • 中断方法测试

    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());
        }
    }
    View Code
  • 相关阅读:
    webpack
    react 原理
    jest
    input 自动获取焦点
    taro
    html5标签
    webpack
    每日日报
    每日日报
    每日日报
  • 原文地址:https://www.cnblogs.com/nihaofenghao/p/9096221.html
Copyright © 2011-2022 走看看