簡體   English   中英

Java越界錯誤,但我確信它已正確聲明

[英]Java out of bounds error but I am sure it's declared properly

該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)

這是因為,當您聲明cells = new JTextField[row][col]; col不等於this.colthis.col = col + 1

所以,當你去for(int j = 0; j < col; j++)actionPerformed j超出界this.cells

例如,當您用col = 5實例化您的類時,將創建一個寬度為5的單元格,但是this.col將等於6,並且j會在您的循環中使用5值。

要糾正您的問題,請執行此操作

public ExperimentalFrame(int row, int col){
        this.row = row; this.col = col;

或者,如果您確實需要將col增加一,我個人認為這很奇怪,

public ExperimentalFrame(int row, int col){
        col++;
        this.row = row; this.col = col;

丟棄類變量(行,列)並根據數組大小進行迭代。 創建數組后,無需維護行和列變量。

    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("");
        }

可以正常工作。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM