涉及actionListener的类不是抽象的

涉及actionListener的类不是抽象的

我的代码:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Events1 extends JFrame {

  private JLabel label;
  private JButton button;

  public Events1() {
    setLayout(new FlowLayout());

    label = new JLabel("");


    button = new JButton("Click for text");

    add(button);
    add(label);

    event e = new event();
    button.addActionListener(e);
  }

    public class event implements ActionListener {

      public void actionPerfomed(ActionEvent e) {
        label.setText("See motherfucker it does do stuff");
      }
    }

    public static void main(String[] args) {

      Events1 window = new Events1();
      window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      window.setSize(500, 500); //.pack();
      window.setVisible(true);
      window.setTitle("Attempt 2");

    }

}


基本上,我是GUI的新手,尝试编译以上代码时会收到错误消息:

Events1.java:25: error: Events1.event is not abstract and does not override abstract method actionPerformed(ActionEvent) in ActionListener
    public class event implements ActionListener {
           ^
1 error


我基本上是根据Oracle Docs上的信息编写此代码的,并对为什么不起作用/如何解决它感到非常困惑。

非常感谢任何帮助。

最佳答案

您在覆盖方法中有错字

public void actionPerformed(ActionEvent e)

这就是为什么您应该对覆盖的方法使用@Override批注,并对此类操作使用IDE支持。

关于java - 涉及actionListener的类不是抽象的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35846922/

10-12 01:19