我想在按下按钮时显示标签的移动一段时间。请帮忙。只需告诉我在更改 setBounds 期间如何暂停进程一段时间,在这种情况下,sleep 方法会暂停进程,但仅执行最后一个 setBound 语句:
void ActionPerformed(..){
Thread b = new Thread();
try{
label.setBounds(100,150,70,70);
b.sleep(1000);
label.setBounds(100,200,70,70);
b.sleep(1000);
label.setBounds(100,150,70,70);
}catch(InterruptedException e){
e.printStackTrace();
}
}