Swift as、as!、as?三種類型轉換操做符使用詳解

  1. as 使用場合

(1)從派生類轉化爲基類,向上轉型 (upcasts)code

class Animal {}
class Cat: Animal {}
let cat = Cat()
let animal = cat as Animal

(2)消除二義性,數值類型轉換對象

let num1 = 42 as CGFloat
let num2 = 42 as Int
let num3 = 42.5 as Int
let num4 = (42 / 2) as Double

(3)switch 語句中進行模式匹配 若是不知道一個對象是什麼類型,你能夠經過switch語法檢測它的類型,而且嘗試在不一樣的狀況下使用對應的類型進行相應的處理it

switch animal {
case let cat as Cat:
    print("若是是Cat類型對象,則作相應處理")
case let dog as Dog:
    print("若是是Dog類型對象,則作相應處理")
default: break
}
  1. as!使用場合 向下轉型(Downcasting)時使用。因爲是強制類型轉換,若是轉換失敗會報 runtime 運行錯誤。
class Animal {}
class Cat: Animal {}
let animal :Animal  = Cat()
let cat = animal as! Cat
  1. as?使用場合 as? 和 as! 操做符的轉換規則徹底同樣。但 as? 若是轉換不成功的時候便會返回一個 nil 對象。成功的話返回可選類型值(optional),須要咱們拆包使用。 因爲 as? 在轉換失敗的時候也不會出現錯誤,因此對於若是能確保100%會成功的轉換則可以使用 as!,不然使用 as?
let animal:Animal = Cat()
 
if let cat = animal as? Cat{
    print("cat is not nil")
} else {
    print("cat is nil")
}
相關文章
相關標籤/搜索