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) }
By 다음 단계를 수행하면 숫자 버튼과 작업 버튼을 클릭할 때 해당 값을 모두 검색할 수 있습니다. 이를 통해 숫자와 연산 모두에 대한 사용자 입력을 허용하는 완전한 기능을 갖춘 계산기를 구축할 수 있습니다.
위 내용은 Java GUI 계산기에서 getSource()를 사용하여 숫자 버튼 값을 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!