• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

swiftsomeObject==nil如何实现

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

以前的编程经验告诉我们判断一个对象是否为空或者是否实例化可以这样

if(someObject == nil){
  //do something }
else{ }

但是在Swift中这样是不行的,然后我在Stackoverflow上找到了答案

http://stackoverflow.com/questions/24314646/swift-with-nil

var s: String? = nil
s === nil // true

The only caveat is that to compare to nil, your variable must able to be nil. This means that it must be an optional, denoted with a ?.

var s: String is not allowed to be nil, so would therefore always returns false when ===compared to nil.

这里提到,如果想对象可能是nil,你的对象必须是optional的。

 

The documentation states:

=== or “Identical to” means that two constants or variables of class type refer to exactly the same class instance.

== or “Equal to” means that two instances are considered “equal” or “equivalent” in value, for some appropriate meaning of “equal”, as defined by the type’s designer.”

 

In Swift, there are class types (class) and value types (structs, enums). Int is not a class type, it's a value type. === operator is defined only for class types (and also for Array but that's a special case). 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
[Swift]键盘遮挡控件发布时间:2022-07-13
下一篇:
Swift学习笔记 - 函数与闭包发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap