-1
JOptionPane.showMessageDialog(null, "the answer" + sum, "the title",
                JOptionPane.PLAIN_MESSAGE);

它是我在eclipse *Juno* 中的代码给出SYNTAX 错误

4

2 回答 2

1

eclispe -clean在命令模式下以干净模式重新启动 Eclipse 。解决所有类似的问题。我面对几个。这对我有帮助。

于 2012-10-17T10:49:55.920 回答
1

JOptionPane.showMessageDialog(null, "the answer"+sum, "the title", JOptionPane.PLAIN_MESSAGE)似乎是对的。但请检查您是否已导入该类JOptionPane并清理您的项目。如果错误仍然存​​在,请考虑检查您的构建路径是否包含正确的 JRE 库。

于 2012-10-17T10:40:50.303 回答