我使用的是Netbeans IDE 7.1,我正试图调试我的简单程序,在变量输出窗口上,有一条消息说"没有变量显示,因为没有当前线程。"这意味着什么?谢谢。:)
这是我的代码:
public class SwingExercise {
public static void main(String[] args) {
String name = "";
String pw = "";
boolean input = true;
boolean hasDigit = true;
while (input) {
try {
while (name.equals("")) {
name = JOptionPane.showInputDialog(null, "Enter username:");
if (name.equals("")) {
JOptionPane.showMessageDialog(null, "No input.", "Error", JOptionPane.ERROR_MESSAGE);
name = "";
}
while (hasDigit) {
for (int i = 0; i < name.length(); i++) {
if (Character.isDigit(name.charAt(i))) {
throw new InputMismatchException();
}
}
hasDigit = false;
}
}
while (pw.equals("")) {
pw = JOptionPane.showInputDialog(null, "Enter password:");
if (pw.equals("")) {
JOptionPane.showMessageDialog(null, "No input.", "Error", JOptionPane.ERROR_MESSAGE);
pw = "";
}
}
} catch (NullPointerException e) {
System.exit(0);
} catch (InputMismatchException e) {
JOptionPane.showMessageDialog(null, "Invalid input.", "Error",
JOptionPane.INFORMATION_MESSAGE);
name = "";
}
}
}
}
因此,只有当代码执行通过断点或在调试时按下暂停键而暂停时,您才能看到变量。然后,您可能还必须从左侧的线程列表中选择程序的主线程。这时,变量应该会显示出来。