发布网友 发布时间:2022-04-24 17:49
共1个回答
热心网友 时间:2023-10-28 08:05
我看了你的程序,帮你实现了让圆动起来,你看看吧。
完整的程序如下:
import java.awt.*;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class TankWar3 extends JFrame {
public void init() { // 窗口
GridLayout layout = new GridLayout();// 布局
PaintThread jpanel = new PaintThread();
Thread t=new Thread(jpanel);
t.start();
JFrame window = new JFrame("window");
window.setBounds(100, 100, 800, 600); // 设置底层容器位置和大小
window.getContentPane().setLayout(layout); // 为底层容器 window 布局
window.getContentPane().add(jpanel); // 将容器 JPanel 添加到 底层容器 window 中
jpanel.setBackground(Color.yellow);
window.setResizable(false); // 设置 窗口 是否可由用户调整大小
window.setVisible(true);
window.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
}
public static void main(String[] args) {
TankWar3 tankwar = new TankWar3();
tankwar.init();
}
}
class PaintThread extends JPanel implements Runnable {
int x = 50, y = 50;
public void paint(Graphics g) { // 负责画圆
super.paint(g);
g.setColor(Color.RED);
g.fillOval(50+x, 50+y, 30, 30);// 设置 圆 的位置、大小
}
public void run() {
do{
x=x+10;
y=y+10;
repaint();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}while(y<500);
}
}