如何使用reduce或fold来避免可变状态

时间:2014-04-03 13:51:30

标签: scala functional-programming mapreduce immutability fold

我的代码中有一个可变变量,我希望通过使用一些聚合函数来避免。不幸的是,我无法找到以下伪代码的解决方案。

    def someMethods(someArgs) = {
      var someMutableVariable = factory

      val resources = getResourcesForVariable(someMutableVariable)
        resources foreach (resource => {
            val localTempVariable = getSomeOtherVariable(resource)
            someMutableVariable = chooseBetteVariable(someMutableVariable, localTempVariable)
        })

        someMutableVariable
    }

我的代码中有两个位置,我需要构建一些变量,然后在循环中将它与其他可能性进行比较,如果更糟,则用这种新的可能性替换它。

1 个答案:

答案 0 :(得分:5)

如果resources变量支持它:

 //This is the "currently best" and "next" in list being folded over
 resources.foldLeft(factory)((cur, next) => 
   val local = getSomeOther(next)

   //Since this function returns the "best" between the two, you're solid
   chooseBetter(local, cur) 
 }

然后你不会有可变的状态。