二进制运算符不能应用于int和int类型的 *** 作数?斯威夫特3

二进制运算符不能应用于int和int类型的 *** 作数?斯威夫特3,第1张

概述我是快速的新手,我试了几个小时这个问题.在我的代码下面: /* [1] error in this line */if filteredCustomReqList != nil { for i in 0..<filteredCustomReqList?.count { tempObj = filteredCustomReqList[i] as! [AnyHa 我是快速的新手,我试了几个小时这个问题.在我的代码下面:
/* [1] error in this line */if filteredCustomreqList != nil {        for i in 0..<filteredCustomreqList?.count {            tempObj = filteredCustomreqList[i] as! [AnyHashable: Any]            bezeichString = tempObj?["bezeich"] as! String            specialRequestLabel.text = ("\(filteredString),\(bezeichString!)")            print (bezeichString!)        }}

错误说:

binary operator cannot be applIEd to operands of type int and int?

其中:

var filteredCustomreqList: [Any]? /* = [Any]() */

如果我使用var filteredCustomreqList:[Any] = [Any]()错误消失但我的if条件总是为真.如何解决此问题?我读过this,但与我的情况不一样(它的int和CGfloat).

任何答案和消息都会对我有所帮助.提前致谢

如果要解包filteredCustomreqList可选变量,可以使用Optional Binding.
var filteredCustomreqList: [Any]?if let filteredCustomreqList = filteredCustomreqList {    for i in 0..<filteredCustomreqList.count {        tempObj = filteredCustomreqList[i] as! [AnyHashable: Any]        bezeichString = tempObj?["bezeich"] as! String        specialRequestLabel.text = ("\(filteredString),\(bezeichString!)")        print (bezeichString!)    }}
总结

以上是内存溢出为你收集整理的二进制运算符不能应用于int和int类型 *** 作数?斯威夫特3全部内容,希望文章能够帮你解决二进制运算符不能应用于int和int类型的 *** 作数?斯威夫特3所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存