实例方法
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 Int32.Words reduce(into:_:)用法及代码示例
- Swift Int32.Words reversed()用法及代码示例
- Swift Int32.Words randomElement(using:)用法及代码示例
- Swift Int32.Words randomElement()用法及代码示例
- Swift Int32.Words indices用法及代码示例
- Swift Int32.Words forEach(_:)用法及代码示例
- Swift Int32.Words shuffled()用法及代码示例
- Swift Int32.Words prefix(upTo:)用法及代码示例
- Swift Int32.Words endIndex用法及代码示例
- Swift Int32.Words split(maxSplits:omittingEmptySubsequences:whereSeparator:)用法及代码示例
- Swift Int32.Words enumerated()用法及代码示例
- Swift Int32.Words min()用法及代码示例
- Swift Int32.Words dropFirst(_:)用法及代码示例
- Swift Int32.Words contains(where:)用法及代码示例
- Swift Int32.Words index(_:offsetBy:limitedBy:)用法及代码示例
- Swift Int32.Words firstIndex(where:)用法及代码示例
- Swift Int32.Words last用法及代码示例
- Swift Int32.Words firstIndex(of:)用法及代码示例
- Swift Int32.Words prefix(through:)用法及代码示例
- Swift Int32.Words max()用法及代码示例
- Swift Int32.Words last(where:)用法及代码示例
- Swift Int32.Words first用法及代码示例
- Swift Int32.Words first(where:)用法及代码示例
- Swift Int32.Words prefix(_:)用法及代码示例
- Swift Int32.Words contains(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Int32.Words reduce(_:_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。