1、解决办法
(1)使用java线程时,将经常使用wait方法,并且如果在调用wait方法时中断了,jvm将捕获该中断,并持续调用wait指令。
(2)此时即使使用interrupt发送法中断,也不会发生任何效果。
(3)wait方法需要进行一些封装,捕获异常,然后停止执行该异常。
2、实例
public static void wait(Object obj) {
boolean interrupted = true;
while (interrupted) {
interrupted = false;
try {
obj.wait();
}
catch (InterruptedException e) {
interrupted = true;
}
}
}
public static void wait(Object obj, int timeout) {
boolean interrupted = true;
long startTime = System.currentTimeMillis();
int sleepTimeout = timeout;
while (interrupted) {
interrupted = false;
try {
obj.wait(sleepTimeout);
}
catch (InterruptedException e) {
interrupted = true;
long now = System.currentTimeMillis();
sleepTimeout -= now - startTime;
startTime = now;
if (sleepTimeout < 0) {
interrupted = false;
}
}
}
}以上就是java中wait调用中断怎么解决的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号