我不明白为什么我的代码不起作用,试图在我JFrame
的f.add(p);
.
import javax.swing.*;
import java.awt.*;
public class SPEL{
public void paintComponent(Graphics g){
g.drawRect(50,75,100,50);
}
public static void main(String[] args) {
JFrame f = new JFrame();
f.setSize(400, 300);
f.setLocation(100,100);
f.setTitle("SPEL");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
SPEL p = new SPEL();
f.add(p);//error
f.setVisible(true);
}
}