我需要在地图中累积结果。在意识到我没有正确使用它们之前,我已经尝试使用 、 和 来执行此.map
操作.reduceLeft
。.foldLeft(init(m))
呼叫需要最新的expression
地图才能获得正确的答案。
我最终得到了这个,它有效,但我觉得有一个var
在循环中更新的 Map 有点脏。从 Scala 最佳实践的角度来看,这是否可以接受?有什么好的方法可以更惯用地重写它吗?
val acc = "some key name"
val id = "some other key name"
val myColl = List(1, 2, 3, 4, 5)
// oversimplification (these things actually do work and access other keys in the map)
def expression(m:Map[String, Int]) = (m(acc)) + (m(id))
def init(m:Map[String, Any]) = 0
// can this be made better?
def compute(m: Map[String, Int]) = {
var initMap = m + (acc -> init(m))
for(k <- myColl) {
initMap = initMap + (id -> k)
val exp = expression(initMap)
initMap = initMap + (acc -> exp)
}
initMap(acc)
}
compute(Map())