How to fill a multidimensional array?
int[][] array = new int[4][6];
Arrays.fill(array, 0);
I tried it, but it doesn't work.
|
|
Try this:
I haven't tested it but I think it should work. |
|||
|
Here's a suggestion using a for-each:
You can verify that it works by doing
A side note: Since you're creating the array, right before the fill, the fill is actually not needed (as long as you really want zeros in it). Java initializes all array-elements to their corresponding default values, and for |
||||
|
|
|
Since array is really an array of arrays, perhaps you can try looping over each row and doing fill for each one individually. |
|||
|
|
|
First, note that If you want your array to stay truly multidimensional, you'll need a loop.
If you only need a 2D-array filled with the same element and don't ever want to change the subarrays later, you can use this trick:
This works analogous for higher-dimensional arrays. |
|||||
|