0
當我編譯的東西,我總是得到一個錯誤:Scala沒有找到一個類成員
value count is not a member of QueryStats
def getQueryFrequency(key : Any) : Int = groups(key).count
^
的代碼是在一個文件中,看起來像這樣
class QueryStats(count : Int, totalTime : Double) {}
class QueryAnalyzer(queryGrouping : QueryLine => Any = QueryGrouping.kind) {
val groups = new scala.collection.mutable.HashMap[Any, QueryStats]()
/** Returns all representant objects of query groups (unsorted). */
def getQueryGroups() : Iterable[Any] = groups.keys
/** In fact, returns query count */
def getQueryFrequency(key : Any) : Int = groups(key).count
}
我使用斯卡拉Windows 8.1 64bit上的2.10.3。
我只是無法得到我的頭。
我不應該擔心......我不能讓我的頭圍繞Windows 8.1無論是! –