import javax.swing.*;
import java.awt.*;
class Twoball{
public Twoball(){
JFrame f=new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel content=new JPanel();
f.setContentPane(content);
content.setBackground(Color.white);
f.setSize(new Dimension(500,500));
content.setBackground(Color.white);
f.setVisible(true);
Graphics g=content.getGraphics();
g.setColor(Color.black);
g.fillOval(0,0,50,50);
//g.drawOval(0,0,50,50);
g.drawOval(0,0,50,50);
g.drawString("hello",80,80);
}
public static void main(String[] args){
Twoball b=new Twoball();
}
}
代码就是这样的,想问下为什么有时候哪个圆能显示,有时候却不能显示,如果显示的时候,把另外一些图片放在前面,然后哪个圆就消失了?
这是什么原因啊?
请教了?