我试图让我的主线程产生一个新线程,并在一段时间后引发中断标志。当它这样做时,生成的线程应该看到该标志并自行终止。
主线程看起来像这样:
final Thread t = new Thread()
{
@Override
public void run()
{
f();
}
};
t.start();
try
{
t.join(time);
t.interrupt();
if(t.isAlive())
{
t.join(allowance);
if(t.isAlive())
throw new Exception();
}
}
catch(Exception e)
{
System.err.println("f did not terminate in the alloted time");
}
生成的线程在其代码中散布着以下内容:
if(Thread.interrupted()) return;
当我处于调试模式时,一切正常。中断标志由主线程引发并被衍生线程捕获。但是,在常规运行模式下,无论我设置多长时间,生成的线程似乎都没有收到中断标志。
有谁知道我做错了什么?
注意:我使用的是 Ubuntu,而且我对任何 Linux 都是新手。问题可能出在操作系统上吗?我没有在任何其他操作系统上测试过代码。