首頁  >  文章  >  Java  >  儘管計時器正確重複,為什麼我的 Java Swing Timer 的 ActionListener 沒有觸發操作?

儘管計時器正確重複,為什麼我的 Java Swing Timer 的 ActionListener 沒有觸發操作?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-11-01 03:50:28870瀏覽

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn