Swift之 ? 和 !

來源:互聯網
上載者:User

標籤:

Swift中文版地址:http://numbbbbb.gitbooks.io/-the-swift-programming-language-/index.html

Swift語言使用var定義變數,但和別的語言不同,Swift裡不會自動給變數賦初始值,也就是說變數不會有預設值,所以要求使用變數之前必須要對其初始化。如果在使用變數之前不進行初始化就會報錯:

var stringValue : String //error: variable ‘stringValue‘ used before being initialized//let hashValue = stringValue.hashValue//                            ^let hashValue = stringValue.hashValue

上面瞭解到的是普通值,接下來Optional值要上場了。經喵神提醒,Optional其實是個enum,裡面有NoneSome兩種類型。其實所謂的nil就是Optional.None, 非nil就是Optional.Some, 然後會通過Some(T)封裝(wrap)原始值,這也是為什麼在使用Optional的時候要拆包(從enum裡取出來原始值)的原因, 也是PlayGround會把Optional值顯示為類似{Some "hello world"}的原因,這裡是enum Optional的定義:

enum Optional<</span>T> : LogicValue, Reflectable {    case None    case Some(T)    init()    init(_ some: T)    /// Allow use in a Boolean context.    func getLogicValue() -> Bool    /// Haskell‘s fmap, which was mis-named    func map<</span>U>(f: (T) -> U) -> U?    func getMirror() -> Mirror}

聲明為Optional只需要在類型後面緊跟一個?即可。如:

var strValue : String? 

一旦聲明為Optional的,如果不顯式的賦值就會有個預設值nil。判斷一個Optional的值是否有值,可以用if來判斷:

if strValue {    //do sth with strValue}

然後怎麼使用Optional值呢?文檔中也有提到說,在使用Optional值的時候需要在具體的操作,比如調用方法、屬性、下標索引等前面需要加上一個?,經喵神指正,”Optional Chaining的問號的意思是詢問是否響應後面這個方法,和原來的isResponseToSelector有些類似”,如果是nil值,也就是Optional.None,固然不能響應後面的方法,所以就會跳過,如果有值,就是Optional.Some,可能就會拆包(unwrap),然後對拆包後的值執行後面的操作,比如:

let hashValue = strValue?.hashValue 

strValue是Optional的字串,如果strValue是nil,則hashValue也為nil,如果strValue不為nil,hashValue就是strValue字串的雜湊值

到這裡我們看到了?的兩種使用情境:
1.聲明Optional值變數
2.用在對Optional值操作中,用來判斷是否能響應後面的操作

另外,對於Optional值,不能直接進行操作,否則會報錯:

//error: ‘String?‘ does not have a member named ‘hashValue‘//let hashValue = strValue.hashValue//                ^        ~~~~~~~~~let hashValue = strValue.hashValue

上面提到Optional值需要拆包(unwrap)後才能得到原來值,然後才能對其操作,那怎麼來拆包呢?拆包提到了幾種方法,一種是Optional Binding, 比如:

if let str = strValue {    let hashValue = str.hashValue}

還有一種是在具體的操作前添加!符號,好吧,這又是什麼詭異的文法?!

直接上例子,strValue是Optional的String:

let hashValue = strValue!.hashValue

這裡的!表示“我確定這裡的的strValue一定是非nil的,盡情調用吧” ,比如這種情況:

if strValue {    let hashValue = strValue!.hashValue}

{}裡的strValue一定是非nil的,所以就能直接加上!,強制拆包(unwrap)並執行後面的操作。 當然如果不加判斷,strValue不小心為nil的話,就會出錯,crash掉。

考慮下這一種情況,我們有一個自訂的MyViewController類,類中有一個屬性是myLabel,myLabel是在viewDidLoad中進行初始化。因為是在viewDidLoad中初始化,所以不能直接聲明為普通值:var myLabel : UILabel,因為非Optional的變數必須在聲明時或者構造器中進行初始化,但我們是想在viewDidLoad中初始化,所以就只能聲明為Optional:var myLabel: UILabel?, 雖然我們確定在viewDidLoad中會初始化,並且在ViewController的生命週期內不會置為nil,但是在對myLabel操作時,每次依然要加上!來強制拆包(?也OK),比如:

myLabel!.text = "text"myLabel!.frame = CGRectMake(0, 0, 10, 10)...

對於這種類型的值,我們可以直接這麼聲明:var myLabel: UILabel!, 果然是高(hao)大(fu)上(za)的文法!, 這種是特殊的Optional,稱為Implicitly Unwrapped Optionals, 直譯就是隱式拆包的Optional,就等於說你每次對這種類型的值操作時,都會自動在操作前補上一個!進行拆包,然後在執行後面的操作,當然如果該值是nil,也一樣會報錯crash掉。

那麼!大概也有兩種使用情境
1.強制對Optional值進行拆包(unwrap)
2.聲明Implicitly Unwrapped Optionals值,一般用於類中的屬性

 

轉自代碼手工藝人的部落格

Swift之 ? 和 !

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.