我正在尝试使用更多的 GUI 东西,但我遇到了一些问题。我有一组 JLabels。它们中的每一个都包含从 0 到 7 的 1 个数字。我通过将背景颜色从黑色更改为绿色来“点亮”这些数字。有没有办法让所有的偶数“亮起来”,同时保持所有的奇数变暗,反之亦然?我尝试使用计时器,但我的算法无法正常工作。下面是配置定时器的方法的代码。谢谢
public void configureAlternatingTimer() {
if (this.timer != null) {
this.timer.stop();
}
this.timer = new Timer(100, new ActionListener() {
public void actionPerformed(ActionEvent evt) {
for (int i = 0; i <= 8; i++) {
if (i == 0 || i == 2 || i == 4 || i == 6) {
lights[1].setBackground(Color.black);
lights[3].setBackground(Color.black);
lights[5].setBackground(Color.black);
lights[7].setBackground(Color.black);
lights[i].setBackground(Color.green);
}
if (i == 1 || i == 3 || i == 5 || i == 7) {
lights[0].setBackground(Color.black);
lights[2].setBackground(Color.black);
lights[4].setBackground(Color.black);
lights[6].setBackground(Color.black);
lights[i].setBackground(Color.green);
}
if(i==8) {
return;
}
}
}
});
this.timer.start();
}
另外,我正在尝试模拟一个“拉森扫描仪”,它会亮到 7,然后再回到 0,然后重复。我可以让它从 0 变为 7,这只是我遇到麻烦的返回部分。谢谢