我有个问题。我正在调试程序。当我复制程序并导入到我的 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.