thread方法

@ 线程的状态
在这里插入图片描述

线程常用方法

start();//让cpu运行run方法
Thread.sleep(1000); //Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds,The thread does not lose ownership of any monitors.
Thread.interrupt(),设置当前中断标记为true(类似属性的set方法)
如果Thread线程中有执行需要捕获InterruptedException异常的操作,比如Thread的sleep,join方法,Object的wait,Condition的await等,它是强制需要捕获InterruptedException异常的,那么当thread1.interrupt方法调用之后,它会给thread1线程抛出一个InterruptedException异常,那么在while循环中,就能捕获到这个异常然后这个异常抛出之后,又会马上将线程中断标识重置为false,因此在下次的while循环中判断isInterrupted时,它是false,也就不会break,然后while循环会一直执行下去。
Thread.isInterrupted(),检测当前的中断标记(类似属性的get方法)
Thread.interrupted(),检测当前的中断标记,然后重置中断标记为false(类似属性的get方法+set方法)
yield();//释放当前线程的cpu资源,谁先获得cpu资源谁执行,当前线程也可能再次执行
join();Waits at most milliseconds for this thread to die.

线程如何停止

用变量控制
使用thread.interrupt

为什么废弃stop

线程不安全

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值