How can I fill a multidimensional array in Java without using a loop? I've tried:
double[][] arr = new double[20][4];
Arrays.fill(arr, 0);
This results in java.lang.ArrayStoreException: java.lang.Double
Thanks in advance!
|
|
This is because a As it happens, I don't believe the API provides a method to solve this without using a loop. It's simple enough however to do it with a for-each loop.
|
|||||||||||||||
|
|
|||||||||||||||||||
|
|
The OP asked how to solve this problem without a loop! For some reason it is fashionable these days to avoid loops. Why is this? Probably there is a realization that using But does Java have a Another way to do this without a loop is to use tail recursion. Yes, it is kind of silly and no one would use it in practice either, but it does show, maybe, that loops are fine in this case. Nevertheless, just to show "yet another loop free example" and to have fun, here is:
It isn't pretty, but in answer to the OP's question, there are no explicit loops. |
|||
Multidimensional arrays are just arrays of arrays and Thus you can't fill a multidimensional array reasonably well without using a loop. Be aware of the fact that, unlike languages like C or C++, Java arrays are objects and in multidimensional arrays all but the last level contain references to other |
|||
|
|
|
As an extension to the answer, I found this post but was looking to fill a 4 dimensional array. The original example is only a two dimensional array, but the question says "multidimensional". I didn't want to post a new question for this... You can use the same method, but you have to nest them so that you eventually get to a single dimensional array.
|
|||
|
|