2

我需要在地图中累积结果。在意识到我没有正确使用它们之前,我已经尝试使用 、 和 来执行此.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())
4

1 回答 1

2

我不确定这是否更清洁,但它会避免使用 var:

def compute(m:Map[String, Int]) = {
  val initMap = myColl.foldLeft(m + (acc -> init(m)))( (e, k) => 
    e + (id -> k) + (acc -> expression(e + (id -> k))))
  initMap(acc)
}

应该返回相同的结果

于 2012-09-27T22:43:53.663 回答