一个Java小球撞击墙面的小程序计算机等级考试
文章作者 100test 发表时间 2010:01:01 12:25:13
来源 100Test.Com百考试题网
import java.awt.*.
import java.applet.*.
public class OnlyChangeUpdate extends Applet implements Runnable
{
int X,Y,moveX,moveY,width,height.
Thread newThread.
public void init()
{
X=0.
Y=0.
moveX=20.
moveY=20.
width=getSize().width.
height=getSize().height.
setBackground(Color.black).
}
public void start()
{
newThread=new Thread(this).
newThread.start().
}
public void stop()
{
newThread=null.
}
public void paint(Graphics g)
{
g.setColor(Color.white).
g.fillOval(X,Y,15,15).
}
public void 0update(Graphics g)
{
paint(g).
}