我正在尝试使用Thread.sleep()方法向上移动我的按钮。但是元素在完成循环后才跳到结束位置。
QPushButton upperBill = Globals.ui.firstUpperBillPushButton;
for(int i = 270; i >= -430; i -= 100)
{
upperBill.move(90, i);
try {
Thread.sleep(1000);
}catch (InterruptedException e){
e.printStackTrace();
}
}
什么问题可能导致问题?我在做什么错了?