import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class ka extends JFrame implements ActionListener{
public ka() {
super("计算器");
this.setSize(100,400);
this.setLocation(300,400);
this.setBackground(Color.LIGHT_GRAY);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setVisible(true);
}
public void ActionPeformed(ActionEvent e)
{
}
public static void main (String[] args) {
new ka();
}
}
错误提示为ka不能用ActionPeformed()这个方法。如果还不清楚,你们可以运行一下试试。