解释一下借口实例化的意思
程序片段如下: ActionListener WthUpdateHandler =
new ActionListener() {
public void actionPerformed(ActionEvent e) {
// code to process add new customer request
// fire event -- inform registered controllers
InfoController con;
for (int i=0; i<listeners.size(); i++){
System.out.println("View " + viewId +
": fire wthUpdate event");
con = (InfoController) listeners.get(i);
con.processWthUpdate(wthText.getText());
}
}
};
不明白把一个接口实例化了 是个什么意思
我只是知道把类实例化,不明白把接口实例化的用意
哪位大侠不吝赐教。