[java]代码库
import java.awt.*;
import java.awt.event.*;
import javax.swing.JFrame;
public class TankClient 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;
System.out.println("hello");
}
public void lauchFram()
{
this.setLocation(400, 300);
this.setSize(800,600);
this.setTitle("TankWar");
//匿名类
this.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
this.setResizable(false);
this.setBackground(Color.GREEN);
setVisible(true);
new Thread(new PaintThread()).start();
}
public static void main(String[] args) {
TankClient tc=new TankClient();
tc.lauchFram();
}
private class PaintThread implements Runnable
{
public void run()
{
while(true)
{
//调用paint
repaint();
try {
Thread.sleep(50);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
}