gpt4 book ai didi

java - 为什么启动一个线程会被另一个线程阻塞?

转载 作者:行者123 更新时间:2023-12-02 14:40:05 25 4
gpt4 key购买 nike

我在编写架构原型(prototype)时遇到了一个奇怪的问题。

我尝试创建两个独立分派(dispatch)相同命令的线程。第一个线程使用 Scanner,第二个线程依赖 Swing。问题是第一个线程阻止了第二个线程的启动。第二个线程仅在扫描仪获得足够的输入后启动。强制第一个线程 hibernate 直到第二个线程启动也暂时解决了问题。

以下示例非常一致地重现了此行为。在调用之间 hibernate 使其更加一致。

import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Scanner;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.WindowConstants;

public final class Bug {
public static void main(final String[] arguments) {
new Thread(new Runnable() {
@Override
public void run() {
System.out.println("The commands are \"wait\" and \"quit\".");
final Scanner scanner = new Scanner(System.in);
loop: while (true) {
System.out.print("Enter a command: ");
final String command = scanner.nextLine();
switch (command.toLowerCase()) {
case "exit":
case "quit":
break loop;
default:
System.out.println("Use \"wait\" or \"quit\" instead of \"" + command + "\".");
case "wait":
}
}
scanner.close();
}
}).start();

try {
Thread.sleep(1000);//improves consistency
}
catch (final InterruptedException exception) {}

EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
final JFrame frame = new JFrame("Commands");
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
frame.setResizable(false);
frame.setLayout(new BorderLayout());
frame.add(new JButton("Wait"), BorderLayout.LINE_START);
final JButton button = new JButton("Quit");
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(final ActionEvent event) {
frame.dispose();
}
});
frame.add(button, BorderLayout.LINE_END);
frame.pack();
frame.setVisible(true);
}
});
}
}

为什么第二个线程无法正常启动?难道是我的错吗?

一个similar problem十多年前作为错误提交。

<小时/>

运行java -version 结果

java version "1.7.0_21"
Java(TM) SE Runtime Environment (build 1.7.0_21-b11)
Java HotSpot(TM) Client VM (build 23.21-b01, mixed mode, sharing)

cmd -info

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

如果这很重要。

最佳答案

这段代码对我有用,尽管我必须用一系列 if/else if 替换开关(我使用的是 Java 1.6)

final String command = scanner.nextLine().toLowerCase();
if (command.equals("exit") || command.equals("quit")) {
break loop;
} else if (!command.equals("wait")) {
System.out.println("Use \"wait\" or \"quit\" instead of \"" + command + "\".");
}

关于java - 为什么启动一个线程会被另一个线程阻塞?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16244782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com