首页 > Java > java教程 > 正文

尽管计时器正确重复,但为什么我的 Java Swing Timer 的 ActionListener 没有触发操作?

Mary-Kate Olsen
发布: 2024-11-01 03:50:28
原创
882 人浏览过

Why is my Java Swing Timer's ActionListener not triggering actions despite the timer repeating correctly?

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!