How to create and use a multi-dimensional array in Scala?

前端 未结 3 586
悲哀的现实
悲哀的现实 2020-11-28 05:56

How do I create an array of multiple dimensions?

For example, I want an integer or double matrix, something like double[][] in Java.

I know for

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-28 06:25

    It's deprecated. Companion object exports factory methods ofDim:

    val cube = Array.ofDim[Float](8, 8, 8) 
    

提交回复
热议问题