//画蛋
g.setColor(getRandColor()); //调用自定义的方法,产生随机颜色,令蛋的颜色成为随机
//就画当前面板的内切圆
int w = this.getWidth();
int h = this.getHeight();
g.fillOval(0, 0, w, h);
}
//自定义一个方法,用于产生随机颜色
private Color getRandColor() {
//1. 产生三个0~255之间的整数,分别表示rgb三元色的色值
int r = Math.abs(rand.nextInt()) % 256;
int g = Math.abs(rand.nextInt()) % 256;
int b = Math.abs(rand.nextInt()) % 256;
//2. 利用这三个随机整数,创建一个Color对象并返回
Color c = new Color(r, g, b);