加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

”已弃用:Swift 3.1中不推荐使用混合类型添加

发布时间:2020-12-14 04:52:10 所属栏目:百科 来源:网络整理
导读:当我直接添加一个整数值(即:1,2,3等)与另一个整数变量 let arr:Array = ["One","Two"]var valueT:Int64 = 0value = arr.count + 1 //in this line 我收到以下警告: '+' is deprecated: Mixed-type addition is deprecated. Please use explicit type conve
当我直接添加一个整数值(即:1,2,3等)与另一个整数变量

let arr:Array = ["One","Two"]
var valueT:Int64 = 0
value = arr.count + 1 //in this line

我收到以下警告:

'+' is deprecated: Mixed-type addition is deprecated. Please use explicit type conversion.

我用这个修好了警告:

value = Int64(value + 1)

虽然它是固定的,但我想知道为什么它被称为混合型添加,因为我没有使用.还有更好的方法来修复swift 3.1中的警告吗?

更新:

以下图像是警告的证明.我正在使用Xcode版本8.3(8E162).

enter image description here

allROR是一个数组.

解决方法

编辑:要使用您的代码生成错误,它应该是

let value = 5
let result: Int64 = value + 1

现在你得到了警告

‘+’ is deprecated: Mixed-type addition is deprecated. Please use explicit type conversion.

但是看起来警告是误导性的,因为值和1都是Int类型所以它的求和也是Int所以你需要简单地将结果转换为Int64,这就是你在做什么,这是完全可以的.

let result: Int64 = Int64(value + 1)

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读