單項選擇題處理一個對象事件的首選方式是哪項?()

A.覆蓋對象的handleEvent()方法
B.添加一個或多個事件監(jiān)聽來處理事件
C.覆蓋對象的processEvent()方法
D.覆蓋對象的dispatchEvent()方法


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題假如我們想要對象eh來處理TextArea對象t的TextEvent事件,那么,我們應如何把eh添加為t的事件處理程序?()

A.t.addTextListener(eh)
B.eh.addTextListener(t)
C.addTextListener(eh,t)
D.addTextListener(t,eh)

2.單項選擇題下列哪個組件會產生Action事件?()

A.Buttons
B.Labels
C.CheckBoxes
D.Windows

3.單項選擇題以下哪個方法不是鼠標事件偵聽器接口(MouseListener)定義的?()

A.mousePressed
B.mouseEntered
C.mouseDragged
D.mouseClicked

4.多項選擇題事件適配器類的作用是:()

A.為編寫事件偵聽器程序提供簡便手段
B.創(chuàng)建一種全新的事件偵聽機制
C.是由相應的事件偵聽器接口繼承而來
D.定義在java.awt.event中

5.多項選擇題以下哪些接口是事件偵聽器接口?()

A.ActionListener
B.ItemListener
C.WindowListener
D.ButtonListener