其他分享
首页 > 其他分享> > 一次代码检查发现的奇怪小问题,InterruptedException 异常

一次代码检查发现的奇怪小问题,InterruptedException 异常

作者:互联网

在一次代码检查时,系统提示以下问题

  

  

 

    发现一处已经捕获了的异常被检测出Bug,
    具体描述是说线程字段需要重新清理状态,或重新调用异常    
    InterruptedExceptions should either be rethrown - immediately or after cleaning up the method's state - or the thread should be re-interrupted by calling

    心里小问号排队跑过???
    这异常不是已经处理了怎么还会有这种问题?

    如何我去看了一下别人对 InterruptedException 异常的说明

    参考:https://blog.csdn.net/qq_27657429/article/details/104333596
    
    如何处理InterruptedException?
      一般来说,有三种做法:
      (1)不做处理,直接抛出
        直接抛出并不会影响线程的状态,被中断的线程还是会提前结束中断状态,继续执行
      (2)捕获异常,再次调用interrupt方法,将中断状态重新设置为true;Thread.currentThread().interrupt();
        这样就保留了线程原有的状态,让线程继续等待下去
      (3)捕获异常,不处理;(不推荐)

 

   

  然后尝试了一下 Thread.currentThread().interrupt();
  

 

  检查已无bug,特此记录

 



  

 

标签:状态,捕获,代码,InterruptedException,线程,interrupt,异常,奇怪
来源: https://www.cnblogs.com/kldywx/p/16426919.html