在这里我做了一个虚拟程序....
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class MyClass1 implements ActionListener
{
JFrame fr;
JRadioButton opt[]=new JRadioButton[2];
JButton btnext;
JRadioButton r1;
MyClass1()
{
fr=new JFrame();
fr.setLayout(null);
opt[0]=new JRadioButton("Hello");
opt[1]=new JRadioButton("Welcome");
r1=new JRadioButton("Jealsous");
btnext=new JButton();
ButtonGroup bg=new ButtonGroup();
bg.add(opt[0]);
bg.add(opt[1]);
opt[0].setBounds(50,100,200,30);
r1.setBounds(50,200,200,30);
opt[1].setBounds(50,150,200,30);
btnext.setBounds(400,350,100,30);
fr.add(opt[1]);
fr.add(opt[0]);
fr.add(btnext);
fr.add(r1);
btnext.addActionListener(this);
fr.setSize(800,500);
fr.setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
System.out.println(opt[0].getText());
opt[0].setSelected(false); //not working
r1.setSelected(false); //working
}
public static void main(String[] s)
{
new MyClass1();
}
}
在这段代码中,当我单击按钮时,仍然选择了作为数组 opt[0] 的单选按钮。而单选按钮 r1 未选中。所以基本上当我用对象数组调用函数 setSelected 时它什么也不做,当我用不同的对象调用它时它工作正常。在大型程序中,我需要对象数组,以便我可以在 for 循环中使用它并将其初始化为来自 String 2Dimensional Array 的某个值。