如果有一个对象myListener(其中myListener对象实现了ActionListener接口),下列哪条语句使得myListener对象能够接受处理来自于smallButton按钮对象的动作事件()。
如果有一个对象myListener(其中myListener对象实现了ActionListener接口),下列哪条语句使得myListener对象能够接受处理来自于smallButton按钮对象的动作事件()。
A.smallButton.addActionListener(myListener);
B.smallButton.addListener(myListener);
C.smallButton.add(myListener);
D.smallButton.addItem(myListener);
正确答案:A