Javax.swing 计时器重复正常,但 ActionListener 不执行任何操作
在提供的代码片段中,计时器已成功配置为定期重复。但是,与计时器关联的 ActionListener 在计时器到期时不会触发任何操作。
ActionListener 的 actionPerformed 方法负责在计时器触发时采取操作。在本例中,该方法尝试在白色和粉色之间切换文本字段的背景颜色。然而,尽管计时器不断执行,文本字段的背景颜色仍然保持不变。
问题的根源在于使用静态内部类作为 ActionListener。静态内部类有一个独特的特征,它们只能访问其封闭类的静态成员。在这种情况下,spreademPanel 和historyPnl 变量不是静态的,因此在Flash 类中无法访问。
要解决此问题,可以将spreademPanel 和historyPnl 设为静态,或者创建Flash 类的实例并传递它作为 ActionListener。
这是基于实例的方法的示例:
<code class="java">// Instance-based ActionListener class Flash implements ActionListener { private JComponent textfield; public Flash(JComponent textfield) { this.textfield = textfield; } @Override public void actionPerformed(ActionEvent evt) { if (this.flasher) { textfield.setBackground(Color.white); } else { textfield.setBackground(Color.pink); } this.flasher = !this.flasher; } //actionPerformed } // Main class ... // Setup timer Flash flash = new Flash(SpreademPanel.historyPnl.NameTxt); // Pass the text field to the Flash instance tmr = new javax.swing.Timer(1000, flash); ...</code>
以上是尽管计时器正确重复,但为什么我的 Java Swing Timer 的 ActionListener 没有触发操作?的详细内容。更多信息请关注PHP中文网其他相关文章!