JOptionPane.showMessageDialog(null, "the answer" + sum, "the title",
JOptionPane.PLAIN_MESSAGE);
我在 eclipse中的代码 * Juno *提供SYNTAX
错误。
答案 0 :(得分:1)
JOptionPane.showMessageDialog(null, "the answer"+sum, "the title", JOptionPane.PLAIN_MESSAGE)
似乎是正确的。但请检查是否已导入类JOptionPane
并清理项目。如果错误仍然存在,请考虑检查构建路径是否包含正确的JRE库。
答案 1 :(得分:1)
在命令模式下由eclispe -clean
以干净模式重启Eclipse。解决这样的所有问题。我面对几个。这对我有帮助。