我正在尝试编写一个自定义事件。我读到我应该拥有3件事:1.组件类,2.事件类,以及3.侦听器接口。
我的问题是我必须在一个这样的类中建立一组侦听器:
public class MyEvent{
private Set<EventListener> = new HashSet<>();
public synchronized void addListener(EventListener listener){
listeners.add(listener);
}
//and the rest of the code for firing event ..
}
这是界面:
public interface EventListener {
void hungry(MyEvent event);
}
我不明白拥有一组接口意味着什么?
慕容708150
翻翻过去那场雪
相关分类