黑马程序员技术交流社区
标题:
谁帮我看看这段代码 有个问题解决不了 为什么那个远点走的时候一直闪烁?
[打印本页]
作者:
付鹏
时间:
2012-3-7 20:38
标题:
谁帮我看看这段代码 有个问题解决不了 为什么那个远点走的时候一直闪烁?
import java.awt.*;
import java.awt.event.*;
public class Tank extends Frame {
int x = 50, y = 50;
public void paint(Graphics g) {
Color c = g.getColor();
g.setColor(Color.RED);
g.fillOval(x,y,30,30);
g.setColor(c);
y += 5;
}
public void launchFrame() {
setSize(800, 600);
setLocation(200, 200);
setTitle("TankWar");
this.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
setResizable(false);
setBackground(new Color(100,255,100));
setVisible(true);
new Thread(new PaintThread()).start();
}
public static void main(String[] args) {
Tank tc = new Tank();
tc.launchFrame();
}
private class PaintThread implements Runnable {
public void run() {
try {
while(true) {
repaint();
Thread.sleep(100);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
我在eclipse上面运行为什么那个红色原点一直闪烁。。 闪烁的很厉害 怎么样才能不让他闪烁呢?
作者:
陈斌
时间:
2012-3-7 22:17
Thread.sleep(100);
是线程的原因、、你改成 Thread.sleep(1000);就不会闪了
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2