(事件处理)当按钮被按下时,应执行的方法是_______。
A: void actionevent(actionPerformed e)
B: void actionPerformed(ActionListener e)
C: void actionListener(ActionEvent e)
D: void actionPerformed(ActionEvent e)
A: void actionevent(actionPerformed e)
B: void actionPerformed(ActionListener e)
C: void actionListener(ActionEvent e)
D: void actionPerformed(ActionEvent e)
举一反三
- ActionListener监听器监听到事件源上发生了ActionEvent事件,则系统自动调用事件处理方法actionPerformed()、该方法被执行一次
- (事件处理)在actionPerformed()方法中,通过getSource()方法判断引起ActionEvent事件的事件源。
- 中国大学MOOC: 阅读下列代码片段:class InterestTest ______ActionListener{……public void actionPerformed( ActionEvent event) {double interest = balance * rate/ 100;balance+ = interest;NumberFormat format= NumberFormat. getCurrencyInstance();System. out. printlb( balance = +Formatter. format ( balance));}private doublerate;}在下划线处应填入的正确选项是______。
- ActionEvent的对象会被传递给以下哪个事件处理器方法?() A: addChangeListener() B: addActionListener() C: stateChanged() D: actionPerformed()
- 下列选项中,属于Java接口的是()。 A: ItemListener B: ActionEvent C: MouseAdapter D: actionPerformed