为什么我的 .isSelected() 方法不起作用?

Why won't my .isSelected() method work?

好吧,我想做的是在选择 JRadioButton 时更改它们的文本,我让它们更改颜色。我知道我可以通过将更改文本的代码放入特定于每个按钮的专用事件处理方法中来实现,但是我该怎么做才能使用仅更改按钮的不同事件处理方法?我已经创建了一个,但它不起作用,这是代码:

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;


public class LessonTwenty extends JFrame implements ActionListener{

JRadioButton b1,b2;
JTextArea t1;
JScrollPane s1;
JPanel jp = new JPanel();

public LessonTwenty()
{


     b1= new JRadioButton("green"); 
    b1.addActionListener(new ActionListener() {

        public void actionPerformed(ActionEvent e) {

            jp.setBackground(Color.GREEN);
        }
      });
     b2= new JRadioButton("red"); 
        b2.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent e) {

                jp.setBackground(Color.RED);
            }
          });


        //Method to change the text of the JRadion Buttons, what i'm trying to make work
           new ActionListener() {

            public void actionPerformed(ActionEvent e) {

                 if(b1.isSelected()){
                        b1.setText("Welcome");
                    }
                    else if(b2.isSelected()){
                        b2.setText("Hello");
                    }
            }
          };





    jp.add(b1);
    jp.add(b2);
    this.add(jp);

    setTitle("Card");  
    setSize(700,500);
    setLocationRelativeTo(null);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    setVisible(true);
}


public static void main(String [ ] args){


    new LessonTwenty();


}


@Override
public void actionPerformed(ActionEvent e) {


}

}

如果我没理解错的话,你想做这样的事情:

//Method to change the text of the JRadion Buttons, what i'm trying to make work
     ActionListener al = new ActionListener() {

        public void actionPerformed(ActionEvent e) {

             if(b1.isSelected()){
                    b1.setText("Welcome");
                }
                else if(b2.isSelected()){
                    b2.setText("Hello");
                }
        }
      };

b1= new JRadioButton("green"); 
b1.addActionListener(al);
b2= new JRadioButton("red"); 
b2.addActionListener(al);

即。您定义一个 ActionListener 并在所有对象中使用。

您在原始代码中定义的匿名对象绝对没有任何作用,它只是创建一个任何人都无法访问的 ActionListener,因为它没有分配给任何 Button。

也许这会有所帮助

ActionListener al = new ActionListener() {

    public void actionPerformed(ActionEvent e) {

            if(e.getSource() == b1){
                b1.setText("Welcome");
            } else if(e.getSource() == b2){
                b2.setText("Hello");
            }
    }
  };