标签: java multithreading concurrency
如何知道线程A中断了引发InterruptedException的线程B?
InterruptedException
答案 0 :(得分:1)
不,你不知道哪个线程会触发中断。
这是一种状态标志,就是这样。无论InterruptedException还是isInterrupted(),都不会提供额外信息。
isInterrupted()
此外,如果您需要以更好的等级合作线程,请尝试其他方式。