实例方法
reduce(_:
reduce(_:_:)
返回使用给定闭包组合序列元素的结果。
声明
func reduce<Result>(
_ initialResult: Result,
_ nextPartialResult: (Result, Self.Element) throws -> Result
) rethrows -> Result
返回值
最终累计值。如果序列没有元素,则结果为 initialResult
。
参数
initialResult
用作初始累加值的值。
initialResult
在第一次执行闭包时传递给nextPartialResult
。nextPartialResult
一个闭包,它将一个累加值和序列的一个元素组合成一个新的累加值,用于
nextPartialResult
闭包的下一次调用或返回给调用者。
详述
使用 reduce(_:_:)
方法从整个序列的元素中生成单个值。例如,您可以对一组数字使用此方法来查找它们的总和或乘积。
nextPartialResult
闭包按顺序调用,累积值初始化为 initialResult
和序列的每个元素。这个例子展示了如何找到一个数字数组的总和。
let numbers = [1, 2, 3, 4]
let numberSum = numbers.reduce(0, { x, y in
x + y
})
// numberSum == 10
调用numbers.reduce(_:_:)
时,会发生以下步骤:
-
nextPartialResult
闭包使用initialResult
(在本例中为0
)和numbers
的第一个元素调用,返回总和:1
。 -
闭包再次使用前一个调用的返回值和序列的每个元素重复调用。
-
当序列耗尽时,从闭包返回的最后一个值返回给调用者。
如果序列没有元素,则永远不会执行 nextPartialResult
并且 initialResult
是调用 reduce(_:_:)
的结果。
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift String.UTF16View reduce(into:_:)用法及代码示例
- Swift String.UTF16View reversed()用法及代码示例
- Swift String.UTF16View randomElement(using:)用法及代码示例
- Swift String.UTF16View randomElement()用法及代码示例
- Swift String.UTF16View firstIndex(where:)用法及代码示例
- Swift String.UTF16View last(where:)用法及代码示例
- Swift String.UTF16View flatMap(_:)用法及代码示例
- Swift String.UTF16View min(by:)用法及代码示例
- Swift String.UTF16View shuffled(using:)用法及代码示例
- Swift String.UTF16View min()用法及代码示例
- Swift String.UTF16View isEmpty用法及代码示例
- Swift String.UTF16View indices用法及代码示例
- Swift String.UTF16View map(_:)用法及代码示例
- Swift String.UTF16View lexicographicallyPrecedes(_:)用法及代码示例
- Swift String.UTF16View index(_:offsetBy:)用法及代码示例
- Swift String.UTF16View description用法及代码示例
- Swift String.UTF16View firstIndex(of:)用法及代码示例
- Swift String.UTF16View allSatisfy(_:)用法及代码示例
- Swift String.UTF16View enumerated()用法及代码示例
- Swift String.UTF16View first(where:)用法及代码示例
- Swift String.UTF16View starts(with:)用法及代码示例
- Swift String.UTF16View prefix(upTo:)用法及代码示例
- Swift String.UTF16View suffix(from:)用法及代码示例
- Swift String.UTF16View filter(_:)用法及代码示例
- Swift String.UTF16View dropFirst(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 String.UTF16View reduce(_:_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。