我不明白为什么这段代码不起作用(JRadioButtons新手)

时间:2016-04-29 05:51:19

标签: java jradiobutton

我正在学习JRadioButtons,我不知道为什么它在我正在观看的教程中工作,而不是在我的代码中。有人可以看一下吗?

主类:

import java.awt.*;
import javax.swing.*;

public class Calculator extends JPanel{
    private static final long serialVersionUID = 1L;

    public static void main(String[] args){
        Screen screen = new Screen();
        screen.setVisible(true);
    }

}

这是屏幕类:

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.ButtonGroup;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextArea;

public class Screen extends JFrame implements ActionListener{
    private static final long serialVersionUID = 1L;

    JRadioButton b1, b2;
    ButtonGroup group;
    JTextArea tb;

    public Screen(){
        super("First GUI");
        setSize(600,600);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setLocationRelativeTo(null);

        JPanel p1 = new JPanel();

        JTextArea tb = new JTextArea("Text Area");

        group = new ButtonGroup();
        group.add(b1);
        group.add(b2);

        b1 = new JRadioButton("Hello");
        b1.setActionCommand("HELLO!");
        b1.addActionListener(this);

        b2 = new JRadioButton("Goodbye");
        b2.setActionCommand("Goodbye! =)");
        b2.addActionListener(this);

        p1.add(b1);
        p1.add(b2);
        p1.add(tb);

        add(p1);
    }

    @Override
    public void actionPerformed(ActionEvent e) {
        // TODO Auto-generated method stub
        tb.setText(e.getActionCommand());
    }
}

在我的新Java头中,这应该是完美的。我初始化按钮,初始化组。单击其中一个按钮后出现错误:AWT-EventQueue-0。我不知道这意味着什么,所以我不知道如何解决这个问题。

1 个答案:

答案 0 :(得分:4)

您已声明两次相同的变量。如果在全局和局部作用域中声明相同的变量(JTextArea tb),它将是一个单独的对象。从Screen()构造函数中删除局部作用域中的声明,以便它可以工作。 试试这个

tb = new JTextArea("Text Area");

而不是

JTextArea tb = new JTextArea("Text Area");

由于您当前的代码,tb仍未在全局范围内初始化。