- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
下面的程序演示了这个问题(最新的 JVM 等等):
public static void main(String[] args) throws InterruptedException {
// if this is true, both interrupted and isInterrupted work
final boolean withPrint = false;
// decide whether to use isInterrupted or interrupted.
// if this is true, the program never terminates.
final boolean useIsInterrupted = true;
ExecutorService executor = Executors.newSingleThreadExecutor();
final CountDownLatch latch = new CountDownLatch(1);
Callable<Void> callable = new Callable<Void>() {
@Override
public Void call() throws Exception {
Random random = new Random();
while (true) {
if (withPrint) {
System.out.println(random.nextInt());
System.out.flush();
}
if (useIsInterrupted)
{
if (Thread.currentThread().isInterrupted())
break;
}
else
{
if (Thread.interrupted())
break;
}
}
System.out.println("Nice shutdown");
latch.countDown();
return null;
}
};
System.out.println("Task submitted");
Future<Void> task = executor.submit(callable);
Thread.sleep(100);
task.cancel(true);
latch.await();
System.out.println("Main exited");
executor.shutdown();
}
最佳答案
这看起来像一个 known issue多处理器机器,主要是 64 位操作系统和 1.5 - 7.0 的 java 版本
问题描述:在同时运行两个线程时,第一个线程使用 Thread.interrupt() 中断第二个线程。第二个线程测试它是否被中断调用 Thread.isInterrupted() 方法,该方法总是返回 false。
这发生在运行 64 位操作系统(Vista 和 Linux)的多处理器 PC 上。在 Vista 64 位上,使用 64 位 JVM(从 1.5 到 1.7 的所有版本)时会发生这种情况,但在使用 32 位 JVM 时不会发生。在 Linux 64 位上,使用 64 位 JVM(从 1.5 到 1.7 的所有版本)或使用 32 位 JVM(从 1.5 到 1.7 的所有版本)时会发生这种情况。
解决方案是安装修复后的版本,即 1.6.0_16-b02 或更高版本。
关于java - Thread.isInterrupted 不起作用,Thread.interrupted 起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2012259/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!