解释一下借口实例化的意思
程序片段如下: 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());
}
}
};
不明白把一个接口实例化了 是个什么意思
我只是知道把类实例化,不明白把接口实例化的用意
哪位大侠不吝赐教。
搜索更多相关主题的帖子:
实例 借口 意思 解释
----------------解决方案--------------------------------------------------------
接口,实例化??你强~~..接口不能实例化
----------------解决方案--------------------------------------------------------
你这不是接口实例化,而是创建了一个匿名内部类,它实现了这个接口,所以可以把它的引用赋给这个接口
----------------解决方案--------------------------------------------------------