我正在尝试从“Java编程简介第9版”中编译以下程序。我在以下关于JComboBox的示例中收到错误:
import javax.swing.*;
public class GUIComponents
{
public static void main (String[] args)
{
JButton jbtOK = new JButton ("OK"); // Creates a button with test OK
JButton jbtCancel = new JButton ("Cancel"); // Creats a cancel button
JLabel jlblName = new JLabel ("Enter your name: "); // Creates a label with the respective text
JTextField jtfName = new JTextField ("Type Name Here"); // Creates a text field with the respective text
JCheckBox jchkBold = new JCheckBox ("Bold"); // Creates a check boc wth the text bold
JCheckBox jchkItalic = new JCheckBox ("Italic");
JRadioButton jrbYellow = new JRadioButton ("Yellow"); // Creates a radio button with text Yellow
JRadioButton jrbRed = new JRadioButton ("Red"); // Creates a radio Button with text Red
**JComboBox jcboColor = new JComboBox (new String[] {"Freshman", "Sophomore", "Junior", "Senior"});**
JPanel panel = new JPanel (); // Creates a panel to group components
panel.add (jbtOK); // Add the OK button to the panel
panel.add (jbtCancel); // Add the Cancel button to the panel
panel.add (jlblName); // Add the lable to the panel
panel.add (jtfName);
panel.add (jchkBold);
panel.add (jchkItalic);
panel.add (jrbRed);
panel.add (jrbYellow);
panel.add (jcboColor);
JFrame frame = new JFrame ();
frame.add (panel);
frame.setTitle ("Show GUI Components");
frame.setSize (450,100);
frame.setLocation (200, 100);
frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
frame.setVisible (true);
}
}
正在产生的错误是:
warning: [unchecked] unchecked call to JComboBox(E[]) as a member of the raw type JComboBox
JcomboBox jcboColor = new JComboBox(new String[] {"Freshman", "Sophomore", "Junior", "Senior"});
Where E is a time-variable:
E extends Object Declared in class JComboBox
答案 0 :(得分:12)
这是一个警告而不是错误。您缺少Java {1.7}中引入的JComboBox期望的泛型类型。如果没有它,每次从ComboBoxModel
检索值时都需要进行强制转换
将String
类型添加到声明以匹配模型数据
JComboBox<String> jcboColor = new JComboBox<>(new String[] { ... });
阅读Generics常见问题解答中的这篇有趣的文章What is an "unchecked" warning?
答案 1 :(得分:0)
到目前为止,Oracle在其Swing教程中具有以下内容:
运行此命令将导致以下行引发此警告:
JComboBox cb = new JComboBox(comboBoxItems);
可能是因为该代码自2008年以来就没有更新?此解决方案帮助我清除了警告并顺利进行了编译,因此倍感荣幸。
答案 2 :(得分:0)