function – 在Swift 2.0中使用reduce()时出错

function – 在Swift 2.0中使用reduce()时出错,第1张

概述注意:这也适用于 Swift 3.0 当我尝试使用reduce函数时,我收到一条错误消息: reduce is unavailable: call the ‘reduce()’ method on the sequence 我已经知道如何使用enumerate()函数执行此 *** 作,但我似乎无法解决此问题.这是返回错误的代码行: var hashValue: Int { return redu 注意:这也适用于 Swift 3.0

当我尝试使用reduce函数时,我收到一条错误消息:

reduce is unavailable: call the ‘reduce()’ method on the sequence

我已经知道如何使用enumerate()函数执行此 *** 作,但我似乎无法解决此问题.这是返回错误的代码行:

var hashValue: Int {    return reduce(blocks,0) { $0.hashValue ^ $1.hashValue }}@H_403_10@ 你修复它的方法与使用enumerate()修复问题的方法相同.在Swift 2中,reduce已作为全局函数被删除,并已作为实例方法添加到通过协议扩展符合SequenceType协议的所有对象上.用法如下.      
var hashValue: Int {    return blocks.reduce(0) { $0.hashValue ^ $1.hashValue }}@H_403_10@          总结       

以上是内存溢出为你收集整理的function – 在Swift 2.0中使用reduce()时出错全部内容,希望文章能够帮你解决function – 在Swift 2.0中使用reduce()时出错所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1028701.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存