我試圖在斯卡拉運行從編程一個例子,但是編譯器給我的錯誤:私人領域不編譯
Description Resource Path Location Type illegal start of statement (no modifiers allowed here) ChecksumAcc.sc /HelloWorld/src line 3 Scala Problem
基本上抱怨private
import scala.collection.mutable.Map
object ChecksumAcc {
private val cache = Map[String, Int]()
}
我使用Eclipse for Scala工作表。更新後相同。我相信它使用了2.9.3 scala編譯器。爲什麼不編譯?