我试图找出一些行为。我有一些产生一个线程的代码。它等待一段时间,然后中断它,加入它,然后退出该方法。
.
.
.
try {
Thread.sleep(processForMillis);
}
catch (InterruptedException ex) {
// Won't happen, ignore.
}
for (Thread t : threads) {
logger.debug("Interrupting Thread " + t.getName());
t.interrupt();
}
for (Thread t : threads) {
try {
t.join(1000L);
logger.debug("Joined Thread " + t.getName());
logger.debug("isAlive? " + t.isAlive());
}
catch (InterruptedException ex) {
// this will never happen
logger.debug("InterruptionException while joining, but didn't expect it.");
}
}
} // end of method
我目前只用一个线程运行它。我可以在我的日志中看到,通常 isAlive() 在加入后会为假,但有时它仍然存在。线程处于一个while循环中:
while(!Thread.currentThread().isInterrupted()){
.
// do some blocking io stuff here
}
所以我怀疑正在发生的事情是我们在读取/处理输入流(阻塞io)时中断了线程,并且它所花费的时间超过了达到while条件并完成连接所需的时间。
所以我的问题是,线程会发生什么?
它不再被引用,线程可以被垃圾收集,但没有一个资源被正确清理,这看起来很糟糕。除了切换到 NIO 之外,还有更好的模式吗?