我有这个问题。
我正在做一个简单的游戏来用 JDialog 找到一个数字。当我按下“开始”按钮时,数字必须改变它,但迭代器停止后数字不会改变。
boolean found = False;
Random random = new Random();
for (int i = 0; i < 10 && !found; i++) {
try {
Thread.sleep(100);
int n = random.nextInt(10)+1;
lblNewLabel_1.setText(String.valueOf(n));
if(n == numeroLoteria){
found = true;
System.out.println("Encontrado numero "+n+"!");
}
System.out.println("Iteracion "+i+"\nnumero: "+n);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
必须更改的标签是 lblNewLabel_1。
我想在每次迭代中更改它。