java: TestAddListener不是抽象的, 并且未覆盖java.awt.event.ActionListener中的抽象方法actionPerformed(java.awt.event.ActionEvent)
ActionListener中的抽象方法actionPerformed需要的参数是ActionEvent,而你写了个ActiveAction建议以后这种重写的方法加上@Override注解,这样这种错误就直接在IDE中被检查出来了