我正在尝试在JPanel
单个线程中移动带有图像的 JLabel。
private void moveBaloon(JLabel Baloon){
for (int i = 0; i < 10; i++) {
try {
Thread.sleep(500);
} catch (InterruptedException ex) {
Logger.getLogger(Bowandarrow.class.getName()).log(Level.SEVERE, null, ex);
}
Point point= Baloon.getLocation();
Baloon.setLocation(point.x, point.y-4);
}
}
5 秒后,气球移动到另一个位置,但它在视觉上没有移动。我能做些什么呢?