加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Egg.java 873 Bytes
一键复制 编辑 原始数据 按行查看 历史
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);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化