0

在 Java 中运行以下代码会给我一个“ArrayIndexOutOfBoundsException:215737344”

但是 SOP 语句会打印“215737344” 如果应该完成循环,为什么还要继续?

public static final int DICE_SIDE_LENGTH = 16;

static int width = 9792;
static int height = 7344;

public static void main(String args[]) throws FileNotFoundException{
    byte[] imageArray = new byte[width * height * 3];
    int image_at=0;
    System.out.println((height/DICE_SIDE_LENGTH) * DICE_SIDE_LENGTH * (width/DICE_SIDE_LENGTH) * 16 *3 );
    for(int row = 0; row<height/DICE_SIDE_LENGTH; row++){
        int[] diceArray = new int[width/DICE_SIDE_LENGTH];  
        for(int p=0; p<DICE_SIDE_LENGTH; p++){
            for(int die: diceArray){
                byte[] dice_row = new byte[16];
                for(int i=0; i<dice_row.length; i++){
                    imageArray[i + image_at]=dice_row[i];
                    imageArray[i + image_at+ 1]=dice_row[i];
                    imageArray[i + image_at + 2]=dice_row[i];
                    image_at+=3;
                }
            }
        }
    }
}
4

2 回答 2

0

你的大小imageArray215737344

但是您正在尝试访问for loop.

如下所示更改您的代码,并尝试调试:

                    int i = 0;
                    try {
                        for(i=0; i<dice_row.length; i++){
                            imageArray[i + image_at]=dice_row[i];
                            imageArray[i + image_at+ 1]=dice_row[i];
                            imageArray[i + image_at + 2]=dice_row[i];
                            image_at+=3;
                        }
                    } catch (ArrayIndexOutOfBoundsException e) {
                        System.out.println("Exception");
                    }
于 2013-11-13T05:55:42.780 回答
0
for(int i=0; i<dice_row.length; i++){
   if(image_at<(width * height *3){
          imageArray[image_at]=dice_row[i];
          imageArray[image_at+ 1]=dice_row[i];
          imageArray[image_at + 2]=dice_row[i];
          image_at+=3;
                    }

你真的需要那个i吗?我认为如果您想在imageArray. 检查在那里,因为坦率地说,if我对你的循环有点困惑。如果您确定image_at不会越界,您可能可以将其删除。

于 2013-11-13T06:10:34.100 回答