伟大的一天
当用户单击某个JRadioButton类对象时,可以产生一个ActionEvent 和一个或者两个ItemEvent(一个来自被选中的对象,另一个来自之前被选中现在未选中的对象),也就是说JRadioButton类可以同时响应ItemEvent和ActionEvent。
处理ItemEvent的步骤:
(1)程序的最前面使用“import java. awt. event. *;"语句导入java. awt. event包中的所有的类。
(2)给程序的主类添加ItemListener接口。
(3)注册需要监听的组件,其格式为“对象名. addItemListener (this);”。
(4)在itemStateChanged()方法中编写具体处理该事件的方法,其格式为:
public void itemStateChanged( ItemEvent e) {语句体}
处理ItemEvent的步骤:
(1)程序的最前面使用“import java. awt. event. *;"语句导入java. awt. event包中的所有的类。
(2)给程序的主类添加ItemListener接口。
(3)注册需要监听的组件,其格式为“对象名. addItemListener (this);”。
(4)在itemStateChanged()方法中编写具体处理该事件的方法,其格式为:
public void itemStateChanged( ItemEvent e) {语句体}