请教一个关于匿名类的问题:
public interface ActionListener  extends  EventListener{
  public void  actionPerformed(ActionEvent)
}
 ActionListener listener = new ActionListener(){
   public void actionPerformed(ActionEvent actionEvent){
     System.out.println("Anonymous class listener");
 }
};
谁能帮忙解释一下。在下在这里万分感谢了!