首页 > 其他分享 >线程打断(interrupt)状态演示

线程打断(interrupt)状态演示

时间:2022-09-27 11:44:52浏览次数:64  
标签:演示 Thread void InterruptedException t1 线程 interrupt sleep public

package cn.yds.juc.learning;

import lombok.extern.slf4j.Slf4j;

/**
 * @author yds
 * @Date 2022/9/21 19:25
 * @Description ThreadDemo4
 * @Version 1.0.0
 */
@Slf4j
public class ThreadDemo4 {
    public static void main(String[] args) throws InterruptedException {
        //test1();//11:16:40.536 [main] INFO cn.yds.juc.learning.ThreadDemo4 - 打断标志:false   抛异常sleep interrupted
        //test2(); //11:17:47.365 [main] INFO cn.yds.juc.learning.ThreadDemo4 - 打断标志:true
    }

    /**
     * sleep,join,wait 的线程在打断之后 Interrupted 任然会赋值为 false
     * sleep 的线程打断后抛异常  sleep interrupted
     * @throws InterruptedException
     */
    public static void test1() throws InterruptedException {
        Thread t1 = new Thread("t1") {
            @Override
            public void run() {
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        };
        t1.start();
        t1.interrupt();
        log.info("打断标志:{}", t1.isInterrupted());
    }

    /**
     *  正常执行的线程打断之后 Interrupted 任然会赋值为 true
     * @throws InterruptedException
     */
    public static void test2() throws InterruptedException{
        Thread t1 = new Thread("t1") {
            @Override
            public void run() {
                while (true) {

                }
            }
        };
        t1.start();
        Thread.sleep(1000);
        t1.interrupt();
        log.info("打断标志:{}", t1.isInterrupted());
    }
}
package cn.yds.juc.learning;

import lombok.extern.slf4j.Slf4j;

/**
 * @author yds
 * @Date 2022/9/21 19:25
 * @Description ThreadDemo4
 * @Version 1.0.0
 */
@Slf4j
public class ThreadDemo4 {
    public static void main(String[] args) throws InterruptedException {
        //test1();//11:16:40.536 [main] INFO cn.yds.juc.learning.ThreadDemo4 - 打断标志:false   抛异常sleep interrupted
        //test2(); //11:17:47.365 [main] INFO cn.yds.juc.learning.ThreadDemo4 - 打断标志:true
    }

    /**
     * sleep,join,wait 的线程在打断之后 Interrupted 任然会赋值为 false
     * sleep 的线程打断后抛异常  sleep interrupted
     * @throws InterruptedException
     */
    public static void test1() throws InterruptedException {
        Thread t1 = new Thread("t1") {
            @Override
            public void run() {
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        };
        t1.start();
        t1.interrupt();
        log.info("打断标志:{}", t1.isInterrupted());
    }

    /**
     *  正常执行的线程打断之后 Interrupted 任然会赋值为 true
     * @throws InterruptedException
     */
    public static void test2() throws InterruptedException{
        Thread t1 = new Thread("t1") {
            @Override
            public void run() {
                while (true) {

                }
            }
        };
        t1.start();
        Thread.sleep(1000);
        t1.interrupt();
        log.info("打断标志:{}", t1.isInterrupted());
    }
}

标签:演示,Thread,void,InterruptedException,t1,线程,interrupt,sleep,public
From: https://www.cnblogs.com/ieas/p/16734010.html

相关文章

  • 线程池底层原理详解与源码分析
    【1】为什么要使用线程池?示例演示://设置业务模拟classMyRunnableimplementsRunnable{privateintcount;publicMyRunnable(intcount){......
  • wait sleep 线程切换 IO阻塞 轮询 锁是否释放和当前线程是否占用CPU资源问题
    1wait以后的notify()函数释放锁,不占用CPU资源,线程暂定,CPU资源被让出。 2sleep()函数不释放锁,但是让出CPU资源,确定唤醒时间。 3yield()函数和操作系统的自发......
  • 开源动态可监控线程池DynamicTp介绍
    前言使用线程池ThreadPoolExecutor过程中你是否有以下痛点呢?代码中创建了一个ThreadPoolExecutor,但是不知道那几个核心参数设置多少比较合适凭经验设置参数值,上......
  • Java SE 19 虚拟线程
    JavaSE19虚拟线程作者:Grey原文地址:博客园:JavaSE19虚拟线程CSDN:JavaSE19虚拟线程说明虚拟线程(VirtualThreads)是在ProjectLoom中开发的,并从JavaSE19开......
  • 虚拟线程
    Java19新特性:虚拟线程(VirtualThreads)......
  • C++多线程编程之【线程管理】
    1.如何启动线程?构建std::thread对象即可。直接传函数名(地址)创建一个类并创建伪函数。构建对象(实例化),将对象作为参数传入thread对象实例化。2.为什么要等待线程?首先......
  • 多线程
    1.线程和进程区别线程的划分尺度小于进程,这使多线程程序拥有高并发性,进程在运行时各内存单元之间相互独立,线程之间内存共享,这使多线程拥有更好的性能和用户体验。线程......
  • 【转载】Python -- 多进程、多线程 的基本使用
    https://www.cnblogs.com/jiyu-hlzy/p/15948408.html 单进程单线程importtimedefproduction():"""间隔一秒,模拟一秒生产一个任务,生产10个任务:ret......
  • Java多线程
    join()方法使用:【已经开了3个线程ABC,要求线程A在线程B的前面执行,线程B在线程C的前面执行】https://blog.csdn.net/zds448588952/article/details/99613648......
  • 多线程——Robyn编程学习(Java)
    多线程的作用能够创建多个线程,此外线程可以体现程序的动态性,提高效率,在抢票以及各种游戏之中具有非常重要的作用。(线程的魅力在坦克大战中体现的淋漓尽致)多线程的知识体......