当我尝试绘制到 JPanel 的扩展版本时,我一直遇到这个问题。每次,我最终都会找到一种方法让它发挥作用。但是我想确切地知道为什么以这种方式绘制到 JPanel 不起作用?
public class MyPanel extends JPanel {
public MyPanel(){
init();
}
public void init(){
JFrame frame = new JFrame("");
frame.add(this);
this.setPreferredSize(new Dimension(100,100));
this.setBackground(Color.RED);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
Graphics g = this.getGraphics();
g.setColor(Color.BLUE);
g.fillRect(0, 0, 50, 50);
}
public static void main(String[] args) {
new MyPanel();
}
}
当我运行此代码时,我看到了 setBackground(Color.RED) 所期望的红色背景,但我没有看到使用 Graphics 对象绘制的蓝色矩形。即使我在 init() 的最后一行调用 repaint(),它也不会出现。
这段代码有什么问题,所以我以后可以避免它?