作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码
try{
sleep(500);
}catch(InterruptedException e){}
当线程完成 hibernate 或在该线程上调用 interrupt
方法时,是否会抛出 InterruptedException
?
最佳答案
不,InterruptedException
在正常流程中不会抛出,但当在线程上调用 interrupt()
时可能会发生(例如,通过某些其他代码尝试中断正常执行)该线程的流程)。通常执行只是在 sleep 语句之后的行中继续。
关于java - 线程因 sleep 而暂停后会发生什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5908170/
我是一名优秀的程序员,十分优秀!