例如:
scala> val b = new ArrayBuffer[Int]()
<console>:7: error: not found: type ArrayBuffer
val b = new ArrayBuffer[Int]()
^
我可以使用REPL查找ArrayBuffer的完整路径并导入吗?
答案 0 :(得分:8)
您需要import scala.collection.mutable.ArrayBuffer
,默认情况下不会导入scala.collection.mutable中的类(和对象)。