本帖最后由 孙含庆 于 2012-10-19 18:27 编辑
import javax.swing.*;
import java.awt.*; //还可以使用Swing 组件不用写双缓冲,Swing 底层和 Awt 不一样,
//他不会擦掉所有画面再去重新画,其实 Swing 底层实现过来双缓冲,
//不用我们去写,画面也没有闪烁的情况
public class SwingTest {
static int x = 10;
JPanel panel = new JPanel() {
public void paint(Graphics g) {
g.setColor(Color.BLACK);
g.fillRect(0, 0, 600, 300);
g.setColor(Color.RED);
g.fillRect(x, 100, 50, 50);
}};
SwingTest() {
JFrame frame = new JFrame("test");
frame.setSize(600,300);
frame.setBackground(Color.RED);
frame.setLayout(null);
new Thread(new MyControl()).start();
panel.setSize(600,300);
panel.setBackground(Color.BLACK);
frame.add(panel);
frame.setVisible(true);
}
public static void main(String [] args) {
SwingTest swingTest = new SwingTest(); //启动实现移动一个方框的代码
}
class MyControl extends Thread { //定义另外的线程控制重画速度
public void run() {
while (true) {
x++;
panel.repaint();
try {
sleep(10);
} catch (Exception e) {}
}
}
}
}
|