這里整理總結下 as乃正、as!住册、as? 這三種類型轉換操作符的異同,以及各自的使用場景瓮具。
as使用場合
- 從派生類轉換為基類荧飞,向上轉型(upcasts)
class Animal {}
class Cat: Animal {}
let cat = Cat()
let animal = cat as Animal
- 消除二義性,數(shù)值類型轉換
let num1 = 42 as CGFloat
let num2 = 42 as Int
let num3 = 42.5 as Int
let num4 = (42 / 2) as Double
- switch 語句中進行模式匹配
如果不知道一個對象是什么類型名党,你可以通過switch語法檢測它的類型叹阔,并且嘗試在不同的情況下使用對應的類型進行相應的處理。
switch animal {
case let cat as Cat:
print("如果是Cat類型對象传睹,則做相應處理")
case let dog as Dog:
print("如果是Dog類型對象耳幢,則做相應處理")
default: break
}
as!使用場合
向下轉型(Downcasting)時使用。由于是強制類型轉換蒋歌,如果轉換失敗會報 runtime 運行錯誤帅掘。
class Animal {}
class Cat: Animal {}
let animal :Animal = Cat()
let cat = animal as! Cat
as?使用場合
as? 和 as! 操作符的轉換規(guī)則完全一樣。但 as? 如果轉換不成功的時候便會返回一個 nil 對象堂油。成功的話返回可選類型值(optional),需要我們拆包使用碧绞。
由于 as? 在轉換失敗的時候也不會出現(xiàn)錯誤府框,所以對于如果能確保100%會成功的轉換則可使用 as!,否則使用 as?
let animal:Animal = Cat()
if let cat = animal as? Cat{
print("cat is not nil")
} else {
print("cat is nil")
}
喜歡我的可以關注收藏我的個人博客:Ro.bber