JAVA中JRadioButton如何使用add
add(r1);这里开始出错.类型 Container 中的方法 add(Component)对于参数(JRadioButton)不适用
要怎么改才可以在JRadioButton中用add呢
JCheckBox t1=new JCheckBox("Visual Basic");
JCheckBox t2=new JCheckBox("Visual C++");
JCheckBox t3=new JCheckBox("Java");
ButtonGroup bg=new ButtonGroup();
JRadioButton r1=new JRadioButton("专科",true);
JRadioButton r2=new JRadioButton("本科",false);
JRadioButton r3=new JRadioButton("硕士");
JRadioButton r4=new JRadioButton("博士",false);
Label lb1=new Label("你的学历为:");
Label lb2=new Label("你精通的语言为:");
public JCheckBoxRadioButtonTest (String str){
super(str);
setLayout(new GridLayout(10,1));
bg.add(r1);
bg.add(r2);
bg.add(r3);
bg.add(r4);
add(lb1);
add(r1);
add(r2);
add(r3);
add(r4);
add(lb2);
add(t1);
add(t2);
add(t3);