前面小结的讲解中,sleep期间被中断java会将中断状态更改,
所以需要在catch中调用Thread.currentThread().interrupt() 恢复中断状态后才能再次通过Thread.currentThread().isInterrupted()判断,但是本小节中storage.put()阻塞响应中断后并未在catch中调用Thread.currentThread().interrupt()恢复中断状态,我想请问老师:storage.put()阻塞响应中断后不会像sleep一样更改中断状态吗?