0

我正在尝试使用更多的 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,这只是我遇到麻烦的返回部分。谢谢

4

2 回答 2

0

要确定您是偶数还是奇数,您应该考虑使用模运算符 % 来确定数字是奇数还是偶数。模数将返回除数后的余数。

For example:
    4 / 2 = 2r0
    5 / 2 = 2r1
    6 / 2 = 3r0
    7 / 2 = 3r1
    so on and so forth...

if(i % 2 == 0) {
    // even
} else {
    // odd
}
于 2013-10-31T03:15:36.120 回答
0

删除for-loop,它会阻止 Event Dispatching Thread 处理repaint请求

相反,每次actionPerformed调用该方法时,更新某种计数器,然后对其执行操作,例如...

this.timer = new Timer(100, new ActionListener() {
    private int sequence = 0;
    public void actionPerformed(ActionEvent evt) {
        if (sequence % 2 == 0) {
            lights[1].setBackground(Color.black);
            lights[3].setBackground(Color.black);
            lights[5].setBackground(Color.black);
            lights[7].setBackground(Color.black);
            lights[sequence].setBackground(Color.green);
        } else {
            lights[0].setBackground(Color.black);
            lights[2].setBackground(Color.black);
            lights[4].setBackground(Color.black);
            lights[6].setBackground(Color.black);
            lights[sequence].setBackground(Color.green);
        }
        
        sequence++;
        if (sequence > 7) {
            // This seems to be important...?
        }
    }
});

根据评论更新

这应该显示所有赔率或所有偶数......

Timer timer = new Timer(500, new ActionListener() {
    private int sequence = 0;
    @Override
    public void actionPerformed(ActionEvent e) {
        System.out.println(sequence + "; " + (sequence % 2));

        for (int index = 0; index < lights.length; index++) {

            if (index % 2 == 0 && sequence % 2 == 0 || index % 2 != 0 && sequence % 2 != 0) {
                lights[index].setBackground(Color.GREEN);
            } else {
                lights[index].setBackground(Color.BLACK);
            }

        }

        sequence++;
        if (sequence > 7) {
            sequence = 0;
        }
    }
});
于 2013-10-31T03:11:39.947 回答