山姆·亚当斯给我发了以下答案,这是我接受的答案
Thread thread = new Thread(myRunnableCode);thread.start();thread.join(timeoutMs);if (thread.isAlive()) { thread.interrupt();}
并
myRunnableCode定期检查
Thread.isInterrupted(),如果返回true则干净地退出。
或者,您可以执行以下 *** 作:
Thread thread = new Thread(myRunnableCode);thread.start();thread.join(timeoutMs);if (thread.isAlive()) { thread.stop();}
但是由于该方法很危险,因此已被弃用。
http://download.oracle.com/javase/1.4.2/docs/api/java/lang/Thread.html#stop()
“此方法本质上是不安全的。使用Thread.stop停止线程会导致其解锁所有它已锁定的监视器的数量(由于未经检查的ThreadDeath异常正在堆栈中传播),如果先前受这些监视器保护的任何对象处于不一致状态,则其他线程可以看到损坏的对象,从而可能导致以任意行为。”
我已经实现了第二个,它可以满足我目前的需求。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)