代码拉取完成,页面将自动刷新
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Rectangle;
import java.util.Random;
public class Egg {
int row,col;
int w=Yard.BLOCK_SIZE;
int h=Yard.BLOCK_SIZE;
private static Random r=new Random(); //private定义变量只有其内部类可以访问,其余均不可
public Egg(int row, int col) {
this.row = row;
this.col = col;
}
public Egg() {
this(r.nextInt(Yard.ROWS-3)+3,r.nextInt(Yard.COLS));
}
public void reAppear() {
this.row=r.nextInt(Yard.ROWS-3)+3;
this.col=r.nextInt(Yard.COLS);
}
public Rectangle getRect() {
return new Rectangle(Yard.BLOCK_SIZE*this.col, Yard.BLOCK_SIZE*this.row,this.w,this.h);
}
public void draw(Graphics g) {
Color c=g.getColor();
g.setColor(Color.GREEN);
g.fillOval(Yard.BLOCK_SIZE*col, Yard.BLOCK_SIZE*row,w,h);
g.setColor(c);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。