下面是一个学习ActionListener的简单代码,但我真的不明白代码有什么问题。选择任何组件时,程序不会打印任何内容。有什么建议吗?感谢。
schedule[0]
答案 0 :(得分:1)
您必须拨打' addActionListener(al)'对你的组件,听取它。
panel.add(cb);
panel.add(cb1);
panel.add(button);
cb.addActionListener (this);
cb1.addActionListener (this);
button.addActionListener (this);
作为ActionListener,您可以使用 this ,因为这是实现ActionListener的ComboBoxDemo。