我正在https://youtu.be/64V8CC7nSok关注Java教程。我已经从视频中100%复制了代码,但我仍然收到此错误:
Board is not abstract and does not override abstract method actionPerformed(ActionEvent) in ActionListener
我已经搜索了类似的案例,但它没有帮助。
以下是包含错误Board.java
的文件,该文件足以重现问题:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Board extends JPanel implements ActionListener{
private Timer timer;
public Board() {
timer = new Timer(25, this);
timer.start();
}
public void actionPeformed(ActionEvent e) {
repaint();
}
public void paint(Graphics g) {
super.paint(g);
g.setColor(Color.red);
g.fillRect(45, 60, 32, 32);
}
}
这是一个与编码无关但与软件设置或版本无关的问题吗?
答案 0 :(得分:0)
你拼写错误的行动!