0

我有个问题。我正在调试程序。当我复制程序并导入到我的 Eclipse 中时,出现了一些错误。错误之一是我无法使用 < String > 设置 JComboBox 的参数。但它在我朋友的 Eclipse 中没有显示错误。我们都使用相同的jre1.7。

private JComboBox<String> pathComboBox = null;

private JComboBox<String> bodyComboBox = null;

//Error: The type JComboBox is not generic; It cannot be parameterized with argument <String>. 
//So I believe this is not the JRE problem. 
4

1 回答 1

3

当我将 Swing 项目导入到较旧的 Java 版本环境时,我遇到了同样的问题。检查您的 Eclipse 是否正确配置为使用 java7 SDK。

您应该检查您的项目方面。

正如您在这里看到的:http: //docs.oracle.com/javase/7/docs/api/javax/swing/JComboBox.html

于 2013-04-23T02:52:50.913 回答