该GUI由javax.swing制成。我想知道为什么它会引发数组索引越界异常,但我确定它已正确声明。我还尝试了在单元实例化和单元重置的for循环内运行测试,但仍然无法正常工作。当我尝试在resetFields actionEvent中打印循环的i和j时,它实际上并没有超出范围,但是它说它超出了范围。

我发现col在进行actionPerformed函数时会添加一个自身,这有点奇怪。

注意:我从另一个Java文件的主类中获得行和列。

这是完整的代码:

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

public class ExperimentalFrame extends JFrame implements ActionListener
{
    private int row, col;
    private JTextField cells[][];
    private JPanel matrix;
    private JButton compute1;
    private JButton reset;
    private JButton showSolution1;
    private JButton resetFields;
    private JPanel matrixPanel;
    private JPanel mainPanel;
    private JPanel buttonPanel;
    private JLabel theory;
    private JPanel theoryPanel;
    private JLabel header[];

    public ExperimentalFrame(int row, int col)
    {
        this.row = row; this.col = col;
        theoryPanel = new JPanel();
        theory = new JLabel("Theory here");
        mainPanel = new JPanel();
        matrix = new JPanel();
        matrixPanel = new JPanel();
        buttonPanel = new JPanel();
        cells = new JTextField[row][col];
        header = new JLabel[col];
        compute1 = new JButton("Compute");
        reset = new JButton("Reset");
        showSolution1 = new JButton("Show Solution");
        resetFields = new JButton("Reset Fields");
        GridBagConstraints gbc = new GridBagConstraints();
        GridBagConstraints gbc2 = new GridBagConstraints();
        GridBagConstraints gbc1 = new GridBagConstraints();
        matrixPanel.setLayout(new GridBagLayout());
        matrix.setLayout(new GridBagLayout());
        mainPanel.setLayout(new GridBagLayout());
        theoryPanel.setLayout(new GridBagLayout());
        buttonPanel.setLayout(new GridBagLayout());

        compute1.addActionListener(this);
        reset.addActionListener(this);
        showSolution1.addActionListener(this);
        resetFields.addActionListener(this);

        gbc1.gridx = 1;
        gbc1.gridy = 1;
        gbc1.insets = new Insets(10,10,10,10);
        theoryPanel.add(theory);
        mainPanel.add(theoryPanel, gbc1);

        for (int j = 0; j < col; j++)
        {
            gbc.gridy = 1;
            gbc.gridx = j + 2;
            if (j != (col - 1))
                header[j] = new JLabel("I" + (j + 1));
            else
                header[j] = new JLabel("x");
            matrix.add(header[j], gbc);
        }

        gbc.insets = new Insets(5, 5, 5, 5);

        for (int i = 0; i < row; i++)
        {
            for (int j = 0; j < col; j++)
            {
                gbc.gridx = j + 2;
                gbc.gridy = i + 3;
                cells[i][j] = new JTextField(3);
                System.out.println(i + " " + j);
                matrix.add(cells[i][j], gbc);
            }
        }

        for (int i = 0; i < row; i++)
        {
            gbc.gridx = 1;
            gbc.gridy = i + 3;
            matrix.add(new JLabel("Equation " + (i + 1) + ": "), gbc);
        }

        gbc2.insets = new Insets(10, 10, 10, 10);
        gbc1.gridx = 1;
        gbc1.gridy = 1;
        gbc1.insets = new Insets(10,10,10,10);
        matrixPanel.add(matrix, gbc1);
        gbc1.gridy = 2;
        gbc1.insets = new Insets(0, 10, 10, 10);
        matrixPanel.add(compute1, gbc1);
        matrixPanel.setBorder(BorderFactory.createLineBorder(Color.gray));
        gbc1.gridx = 1;
        gbc1.gridy = 2;
        mainPanel.add(matrixPanel, gbc1);
        //gbc1.gridy = 3;

        gbc1.anchor = GridBagConstraints.LINE_END;
        gbc1.gridx = 1; gbc1.gridy = 1;
        gbc1.insets = new Insets(0, 5, 0, 0);
        buttonPanel.add(reset, gbc1);
        gbc1.gridx = 2; gbc1.gridy = 1;
        buttonPanel.add(resetFields, gbc1);

        gbc1.gridx = 1; gbc1.gridy = 3;
        gbc1.insets = new Insets(0, 10, 10, 10);
        mainPanel.add(buttonPanel, gbc1);
        add(mainPanel);

        pack();
        setTitle("Experimental");
        setLocationRelativeTo(null);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    @Override
    public void actionPerformed(ActionEvent ae)
    {
        Object o = ae.getSource();
        JButton jb = (JButton) o;
        if (jb == reset)
        {
            this.setVisible(false);
            this.dispose();
            new Experiment10();
        }
        else if (jb == resetFields)
        {
            System.out.println(row + " " + col);
            for (int i = 0; i < row; i++)
                for (int j = 0; j < col; j++)
                {
                    System.out.println(i + " " + j);
                    cells[i][j].setText(""); //here
                }
        }
    }
}


这是错误:

Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException:6
    at ExperimentalFrame.actionPerformed(ExperimentalFrame.java:140)

最佳答案

丢弃类变量(行,列)并根据数组大小进行迭代。创建数组后,无需维护行和列变量。

    for (int i = 0; i < cells.length; i++)
        for (int j = 0; j < cells[i].length; j++) {
            System.out.println(i + " " + j);
            cells[i][j].setText("");
        }


可以正常工作。

07-26 04:08