0

我试图在 2x2 数组上输入数据,我不能使用“for”,因为使用按钮,第一和第二位都可以,但是当我转到数组的下一个维度时出现问题(j,我猜)我会很感激一些帮助,谢谢 :)

    public void actionPerformed (ActionEvent e){
            if (e.getSource() == btingreso){
                if (i<c1.length)
                    if (j<c1[i].length){
                        c1[i][j]= new compu_partes (txtnombre.getText(),Integer.parseInt(txtcantidad.getText()),txtcodigo.getText(),Double.parseDouble(txtprecio.getText()));
                            i++;
                    }
                    j++;
                    i=0;
            }
}
4

1 回答 1

0

小心你的缩进!它表明第二个if块还包括j++;and i=0;,这两个语句不是

另外我认为你增加了你的指数有点错误。

这应该有效:

public void actionPerformed (ActionEvent e){
    if (e.getSource() == btingreso){
        if (i<c1.length){
            if (j < c1[i].length){
                c1[i][j] = new compu_partes(...);
                j++;
            }
            if (j == c1[i].length){
                i++;
                j=0;
            }
        }
    }
}
于 2013-09-15T20:46:25.867 回答