public class Demo01 extends JFrame {
public static void main(String[] args) {
new Demo01();
}
public Demo01() {
Container container = this.getContentPane();
JComboBox comboBox = new JComboBox();
comboBox.addItem(null);
comboBox.addItem("我来了");
comboBox.addItem("我看见了");
comboBox.addItem("我胜利了");
container.add(comboBox);
this.setVisible(true);
this.setSize(500,350);
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
}
public class Demo02 extends JFrame {
public static void main(String[] args) {
new Demo02();
}
public Demo02() {
Container container = this.getContentPane();
Vector contents = new Vector();
contents.add("zhangsna");
contents.add("lisi");
contents.add("wangwu");
JList jlist = new JList(contents);
container.add(jlist);
this.setVisible(true);
this.setSize(500,350);
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
}