I have String array like this one:
String[][][][][] map = new String[9][13][2][1][1];
and when I'm trying update one fild, like this:
map[0][0][1][0][1] = "true";
every fild is updating to "true", this one:
map[0][1][1][0][1]
this one:
map[0][2][1][0][1]
why this is happening?
this is my code:
int UP = 0;
int UP_RIGHT = 1;
int RIGHT = 2;
int DOWN_RIGHT = 3;
int DOWN = 4;
int DOWN_LEFT = 5;
int LEFT = 6;
int LEFT_UP = 7;
String[][][][][] map = new String[9][13][2][1][1];
public PitchMoveHelper() {
String[][] move = {
{String.valueOf(UP), "false"},
{String.valueOf(UP_RIGHT), "false"},
{String.valueOf(RIGHT), "false"},
{String.valueOf(DOWN_RIGHT), "false"},
{String.valueOf(DOWN), "false"},
{String.valueOf(DOWN_LEFT), "false"},
{String.valueOf(LEFT), "false"},
{String.valueOf(LEFT_UP), "false"}
};
String[][] used = {{"used", "false"}};
for(int z = 0; z < 9; z++) {
for(int x = 0; x < 13; x++) {
map[z][x][0] = used;
map[z][x][1] = move;
}
}
//this.updateLeftBand();
//this.updateRightBand();
//this.updateTopBand();
//this.updateBottomBand();
map[0][0][1][0][1] = "true";
System.out.println(Arrays.deepToString(getPitchMap()));
}
ArrayIndexOutOfBoundsException? – Rohit Jain Nov 15 '12 at 19:18map[0][0][1][0][1] = "true"would first throw an index out of bounds exception... Which suggests that you might not be running the code you think you are running... – assylias Nov 15 '12 at 19:181at the end, which is out of bounds, as the size in the last bracket is1. – Rohit Jain Nov 15 '12 at 19:24