I have the following list defined within a Scala object:

object Foo {
    val bar = List(1, 2, 3)
}

Which seems to become a scala.collection.immutable.List&l,java,scala"/>

首页 > 解决方案 > Scala List[Int] 变为 List in Java

I have the following list defined within a Scala object:

object Foo {
    val bar = List(1, 2, 3)
}

Which seems to become a scala.collection.immutable.List&l