This may sound easy, but I just can't get it right.
How to create a 2 dimensional array with size 100 by 60 in Scala? Supposed I have class called Abcd and I want to create a 2 dimensional array of Abcd. I tried with the following code but doesn't work.
var myArray = new Array[Array[Abcd]](100,60)
It complains "too many arguments for constructor Array"
The currently recommended way is to use ofDim
:
var myArray = Array.ofDim[Abcd](100, 60)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With