1

こんにちは、インターネットの人々。12 個のボタンとテキスト フィールドを持つ GUI を作成する cs クラスの紹介用に、Java でプログラムを作成しています。ユーザーがいずれかのボタンを押すと、対応する文字がテキスト フィールドに表示されます。基本的に、12 個のボタン オブジェクトの配列を使用してボタン パネルにこれらのボタンを配置するメソッドを作成しました。このメソッドは、配列が作成され、ボタン オブジェクトで埋められる別のクラスで使用されます。プログラムを実行すると、次のエラーが表示されます。

Exception in thread "main" java.lang.NullPointerException
    at TextButtonsHWPanel.<init>(TextButtonsHWPanel.java:26)
    at TextButtonsHW.<init>(TextButtonsHW.java:56)
    at TextButtonsHW.main(TextButtonsHW.java:77)

ここに私の2つのクラスがあります:

public class TextButtonsHWPanel extends JPanel {
    private JPanel buttonPanel;
    private JScrollPane scrollPane;

/**
 * Constructor
 * @param buttons array of JButtons to appear in a grid for text input
 * @param textArea JTextArea for display of text in response to pressed buttons
 */
public TextButtonsHWPanel(JButton[] buttons, JTextArea textArea) {
    //TODO: Create a sub-panel with a 4 row, 3 column GridLayout
    buttonPanel.setLayout(new GridLayout(4,3));
    //TODO: Populate the grid with buttons
    for (int i = 0; i < 12; i++) {
        buttonPanel.add(buttons[i]);
    }
    //TODO: Add the grid panel to this panel
    this.add(buttonPanel);
    //TODO: Create a JScrollPane containing textArea
    scrollPane = new JScrollPane(textArea);
    //TODO: Set the preferred size of the scroll pane to 80x120
    scrollPane.setPreferredSize(new Dimension(80, 120));
    //TODO: Add the scroll pane to this panel
    this.add(scrollPane);
}



public class TextButtonsHW extends JFrame implements ActionListener {
    private JButton[] buttons; //Do not change
    private JTextArea textArea; //Do not change
    private String[] buttonNames = {"a", "b", "c", "1", "2", "3", "x", "y", "z", "Enter", "Space", "Clear"};

//Assign values for these constants in the constructor
private final int ENTER;    //Index of Enter button in buttons
private final int SPACE;    //Index of Space button in buttons
private final int CLEAR;    //Index of Clear button in buttons

/**
 * Set up this frame and its contents.
 * @param title Title to appear in JFrame title bar
 */
public TextButtonsHW(String title) {
    super(title); //call parent JFrame constructor to set the title

    //TODO: instantiate all JButtons, add them to the buttons array,
    //  and register "this" as the ActionListener for each button.
    buttons = new JButton[12];
    for (int j = 0; j < buttons.length; j++) {
        buttons[j] = new JButton(buttonNames[j]);
        buttons[j].addActionListener(this);
    }

    //TODO: assign values to ENTER, SPACE, and CLEAR constants to
    //  indicate the indexes of those buttons in the buttons array
    ENTER = 9;
    SPACE = 10;
    CLEAR = 11;

    //TODO: create the JTextArea textArea
    textArea = new JTextArea();

    //TODO: set its "editable" property to false
    textArea.setEditable(false);

    //Create a TextButtonsHWPanel to display the buttons and textArea
    TextButtonsHWPanel mainPanel = new TextButtonsHWPanel(buttons, textArea);

    this.getContentPane().add(mainPanel);
    this.pack();
}

/* (non-Javadoc)
 * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
 */
@Override
public void actionPerformed(ActionEvent e) {
    //TODO: update the text of textArea according to which
    //  button generated the ActionEvent.

}

/**
 * Create this JFrame 
 * @param args not used
 */
public static void main(String[] args) {
    final TextButtonsHW f = new TextButtonsHW("Text Buttons");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setLocationRelativeTo(null); //centers frame on screen
    f.setVisible(true);
}

}

この時点で、プログラムを実行して、何もしないボタンと空白のテキスト フィールドを表示できるはずだと思います。誰かが私が間違っているところを見ることができますか?

編集:解決

4

1 に答える 1

5

はい、ここを見てください:

private JPanel buttonPanel;

これbuttonPanelにより、デフォルト値のnull.

コンストラクタの最初の行:

buttonPanel.setLayout(new GridLayout(4,3));

... を逆参照していますがbuttonPanel、これはまだ null です。バン。に null 以外の参照を割り当てる必要がありますbuttonPanel

private JPanel buttonPanel = new JPanel();

あなたは他のすべての変数の値を割り当てているようです - コンストラクタ本体でそうしていますが、これも問題ありません - 欠けているのはこれだけです。

ただし、スタック トレースは、どの行が例外をスローしたかを示しているはずです。これにより、問題を解決するのに十分な情報が得られるはずです。

于 2013-04-25T22:52:52.530 に答える