gpt4 book ai didi

Java Swing 定时器循环

转载 作者:行者123 更新时间:2023-12-01 11:56:10 26 4
gpt4 key购买 nike

想象一个数字数组。特定数字特定按钮,该按钮必须闪烁。我必须遍历数组。现在 Swing 计时器闪烁一个按钮,但如果我尝试输入 for(int I=0;i<array.length;i++)循环转到下一个按钮 - 计时器不会执行此操作。任何帮助,将不胜感激。谢谢。这是我现在的代码:

Timer startGame = new Timer(1000, new ActionListener() {
int colorPlay = 1;//which sqaure to blink
int blinkingState = 0;

@Override
public void actionPerformed(ActionEvent e) {
if (blinkingState < 2) {
int i = blinkingState % 2;
switch (i) {
case 0:
if (colorPlay == 1) {
greenButton.setBackground(Color.green);
} else if (colorPlay == 2) {
redButton.setBackground(Color.red);
} else if (colorPlay == 3) {
blueButton.setBackground(Color.blue);
} else if (colorPlay == 4) {
yellowButton.setBackground(Color.yellow);
}
break;
case 1:
if (colorPlay == 1) {
greenButton.setBackground(lightGreen);
} else if (colorPlay == 2) {
redButton.setBackground(lightRed);

} else if (colorPlay == 3) {
blueButton.setBackground(lightBlue);
} else if (colorPlay == 4) {
yellowButton.setBackground(lightYellow);
}
break;
}//switch ends
blinkingState++;
}//if blinking<2 ends
}//actionPerformed ends
});//timer ends

最佳答案

你的逻辑似乎有问题。你想要的是:

  • 闪烁绿灯
  • 等等
  • 闪烁红灯
  • 等等
  • 黄灯闪烁

眨眼的地方

  • 设置常规背景颜色
  • 等等
  • 设置浅色背景色

这意味着您可能最好使用两个 Timer 实例。

Timer lightTimer = new Timer( 2000, new ActionListener(){
private int lightCounter = 0;
@Override
public void actionPerformed(ActionEvent e){
switch( lightCounter ){
case ...:
final JButton lightButton = ...;
lightButton.setBackground( regularColour );
Timer blinkingTimer = new Timer( 1000, new ActionListener(){
@Override
public void actionPerformed(ActionEvent e){
lightButton.setColor( lightColour );
}
}
blinkingTimer.setRepeats( false );
blinkingTimer.start();
}
lightCounter++;
if ( lightCounter == numberOfLights ){
((Timer)e.getSource()).stop();
}
}
} );
lightTimer.setRepeats( true );
lightTimer.start();

按照上面的代码应该可以做到这一点。注意如何:

  • 我使用第二个计时器将闪烁灯切换回之前的状态(BlinkingTimer 变量)
  • BlinkingTimer 使用 setRepeats( false ) 因为它只需要触发一次
  • LightTimer 使用 setRepeats( true ) 因为它需要执行多次,一旦让所有灯闪烁就会自行关闭

关于Java Swing 定时器循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28432164/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com