如何使用getSource() 擷取按鈕值
在GUI 計算器中,您已正確使用getSource() 方法來偵測按鈕點擊次數。但是,您僅捕獲用於操作( 、 - 、 * 、 / 、 C )的按鈕,但您還需要處理數字按鈕。
要檢索每個按鈕的值,請按照以下步驟操作:
b1.addActionListener(numActionListener); b2.addActionListener(numActionListener); b3.addActionListener(numActionListener); // and so on...
@Override public void actionPerformed(ActionEvent e) { Object source = e.getSource(); // Check if the source is a number button if (source instanceof Button) { Button button = (Button) source; // Get the value of the button String buttonValue = button.getLabel(); // Append the value to the input text field (e.g., tf1) tf1.setText(tf1.getText() + buttonValue); } // ... (continue with your existing code to handle operation buttons) }
透過以下操作透過這些步驟,您可以在點擊數字按鈕和操作按鈕時檢索它們的值。這將允許您建立一個功能齊全的計算器,接受使用者輸入的數字和運算。
以上是如何在 Java GUI 計算器中使用 getSource() 檢索數字按鈕值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!