Scala 集合 - reduce 方法

reduce() 方法是 TraversableOnce 特征的成员,它用于折叠集合的元素。 与fold方法类似,但不带初始值。

语法

以下是reduce方法的语法。

def reduce[A1 >: A](op: (A1, A1) ? A1): A1

这里,reduce方法以关联二元运算符函数作为参数。 此方法返回结果值。

用法

下面是一个演示如何使用reduce方法的示例程序 −

示例

object Demo {
   def main(args: Array[String]) = {
      val list = List(1, 2, 3 ,4)
      //apply operation to get sum of all elements of the list
      val result = list.reduce(_ + _)
      //print result
      println(result)      
   }
}

将上述程序保存在Demo.scala中。 以下命令用于编译和执行该程序。

命令

\>scalac Demo.scala
\>scala Demo

输出

10