当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《如何使用reduce或fold来避免可变状态》经验,为你挑选了1个好方法。

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

    def someMethods(someArgs) = {
      var someMutableVariable = factory

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

        someMutableVariable
    }

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



1> wheaties..:

如果你的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) 
 }

然后你没有可变的状态.

推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有