I'm having trouble populating a 2 dimensional array in java.
private int[][] array = new int[1][1];
array[|0][0] = 1;
error ']' expected at the |
|
I'm having trouble populating a 2 dimensional array in java.
error ']' expected at the | |
||||
|
I think the problem is that this code is (probably) outside of any method. In Java, statements have to be inside a method or initializer. Try defining a
Hope this helps! |
|||
|
|
|? – casablanca Feb 7 '12 at 3:42