java中wait调用中断怎么办?

java中的线程在数量上,可以说是比较多的。所以为了能够使线程有序的进行,我们通常会用到wait方法,来让部分线程变为等待的状态。不过wait方法一旦被中断也是非常麻烦的,将会出现不断调用的情况。下面我们就这种问题进行分析,然后带来具体的实例解决办法。

1、解决办法

(1)使用java线程时,将经常使用wait方法,并且如果在调用wait方法时中断了,jvm将捕获该中断,并持续调用wait指令。

(2)此时即使使用interrupt发送法中断,也不会发生任何效果。

(3)wait方法需要进行一些封装,捕获异常,然后停止执行该异常。

2、实例

publicstaticvoidwait(Objectobj){
booleaninterrupted=true;
while(interrupted){
interrupted=false;
try{
obj.wait();
}
catch(InterruptedExceptione){
interrupted=true;
}
}
}

publicstaticvoidwait(Objectobj,inttimeout){
booleaninterrupted=true;
longstartTime=System.currentTimeMillis();
intsleepTimeout=timeout;

while(interrupted){
interrupted=false;
try{
obj.wait(sleepTimeout);
}
catch(InterruptedExceptione){
interrupted=true;
longnow=System.currentTimeMillis();
sleepTimeout-=now-startTime;
startTime=now;
if(sleepTimeout<0){
interrupted=false;
}
}
}
}
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞15 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容