博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
线程中断、线程让步、线程睡眠、线程合并
阅读量:6419 次
发布时间:2019-06-23

本文共 628 字,大约阅读时间需要 2 分钟。

一、线程中断

public class InterruptTest {    public static void main(String[] args){        MyThread mt = new MyThread("myThread");        mt.start();        try {            Thread.sleep(1000);        } catch (InterruptedException e) {            e.printStackTrace();        }        mt.interrupt();    }}class MyThread extends Thread{    private int i ;    public MyThread(String name){        super(name);    }    public void run(){        while(true){            System.out.println(getName()+"执行了"+(i++)+"次");        }    }}

上述代码一直循环执行,这是因为interrupted这是用来判断当前线程是否被中断状态,本身并不中断线程。

转载于:https://www.cnblogs.com/lfdingye/p/7355861.html

你可能感兴趣的文章
原码编译安装openssh6.7p1
查看>>
easyui-datetimebox设置默认时分秒00:00:00
查看>>
蚂蚁分类信息系统5.8多城市UTF8开源优化版
查看>>
在django1.2+python2.7环境中使用send_mail发送邮件
查看>>
“Metro”,移动设备视觉语言的新新人类
查看>>
PHP源代码下载(本代码供初学者使用)
查看>>
Disruptor-NET和内存栅栏
查看>>
Windows平台ipod touch/iphone等共享笔记本无线上网设置大全
查看>>
播放加密DVD
查看>>
产品设计体会(3013)项目的“敏捷沟通”实践
查看>>
RHEL6.3基本网络配置(1)ifconfig命令
查看>>
网络诊断工具之—路由追踪tracert命令
查看>>
Java模拟HTTP的Get和Post请求(增强)
查看>>
php 环境搭建(windows php+apache)
查看>>
让虚拟机的软盘盘符不显示(适用于所有windows系统包括Windows Server)
查看>>
Cygwin不好用
查看>>
jQuery插件之验证控件jquery.validate.js
查看>>
[经验]无线鼠标和无线键盘真的不能用了?——雷柏的重生之路~
查看>>
【转】plist涉及到沙盒的一个问题
查看>>
GNU make manual 翻译( 一百四十五)
查看>>