首页 > 代码库 > swift 之 as、as!、as?
swift 之 as、as!、as?
1,as使用场合
(1)从派生类转换为基类,向上转型(upcasts)
1 class Animal {} 2 class Cat: Animal {} 3 let cat = Cat() 4 let animal = cat as Animal
(2)消除二义性,数值类型转换
1 let num1 = 42 as CGFloat 2 let num2 = 42 as Int 3 let num3 = 42.5 as Int 4 let num4 = (42 / 2) as Double
(3)switch 语句中进行模式匹配
如果不知道一个对象是什么类型,你可以通过switch语法检测它的类型,并且尝试在不同的情况下使用对应的类型进行相应的处理。
1 switch animal { 2 case let cat as Cat: 3 print("如果是Cat类型对象,则做相应处理") 4 case let dog as Dog: 5 print("如果是Dog类型对象,则做相应处理") 6 default: break 7 }
2,as!使用场合
向下转型(Downcasting)时使用。由于是强制类型转换,如果转换失败会报 runtime 运行错误。
1 class Animal {} 2 class Cat: Animal {} 3 let animal :Animal = Cat() 4 let cat = animal as! Cat
3,as?使用场合
as? 和 as! 操作符的转换规则完全一样。但 as? 如果转换不成功的时候便会返回一个 nil 对象。成功的话返回可选类型值(optional),需要我们拆包使用。
由于 as? 在转换失败的时候也不会出现错误,所以对于如果能确保100%会成功的转换则可使用 as!,否则使用 as?
1 let animal:Animal = Cat() 2 3 if let cat = animal as? Cat{ 4 print("cat is not nil") 5 } else { 6 print("cat is nil") 7 }
注释:派生类:
二义性:
二义性问题
1.在继承时,基类之间、或基类与派生类之间发生成员同名时,将出现对成员访问的不确定性——同名二义性。
2.当派生类从多个基类派生,而这些基类又从同一个基类派生,则在访问此共同基类中的成员时,将产生另一种不确定性——路径二义性。
swift 之 as、as!、as?
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。