我的代码中有一个可变变量,我想通过使用一些聚合函数来避免它。不幸的是,我找不到以下伪代码的解决方案。
def someMethods(someArgs) = {
var someMutableVariable = factory
val resources = getResourcesForVariable(someMutableVariable)
resources foreach (resource => {
val localTempVariable = getSomeOtherVariable(resource)
someMutableVariable = chooseBetteVariable(someMutableVariable, localTempVariable)
})
someMutableVariable
}
我的代码中有两个地方需要构建一些变量,然后在循环中将其与其他可能性进行比较,如果情况更糟,则用这种新的可能性替换它。
如果你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)
}
然后你就没有可变状态了。