我是靠谱客的博主 单薄海燕,最近开发中收集的这篇文章主要介绍线程中断的方式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

stop()

强制中断线程,可能导致线程中的资源没有释放,比如在try-catch-finally中释放资源,直接中断,不会调用finally块。

new Thread().interrupte()

         协作式的中断线程,不会强制中断线程,会发一个interrupt的信号,线程run方法中,如果有Thread.sleep()或者wait,捕获了InterruptedException,会命中该catch, 重置interrupt标记位,如果需要处理该标记位,需要显示调用interrupt(),再判断isInterrupted(),判断run方法执行结束(如:在while循环中,break )。

new Thread().isInterrupted()

线程是否中断的标记位

Thread.interrupted()

         静态方法,获取当前线程的中断标记位。调用之后,会重置interrupt标记位,再次通过isInterrupted()获取就为false啦

实战

 

		final Thread thread = new Thread() {
			@Override
			public void run() {
//				while (Thread.interrupted()){
				while (!isInterrupted()){
					System.out.println("Running");
					System.out.println("isInterrupted=" + isInterrupted());
					try {
						Thread.sleep(10);
					} catch (InterruptedException e) {
						e.printStackTrace();
						System.out.println("InterruptedException isInterrupted=" + isInterrupted());
						interrupt();
					}
				}
				System.out.println("while end isInterrupted=" + isInterrupted());
			}
		};

		thread.start();
		System.out.println("main");
		try {
			Thread.sleep(30);
			thread.interrupt();
		} catch (InterruptedException e) {
			e.printStackTrace();
		}

            

最后

以上就是单薄海燕为你收集整理的线程中断的方式的全部内容,希望文章能够帮你解决线程中断的方式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部