Swift初窺----文法進階

來源:互聯網
上載者:User

標籤:swift   ios   class   binding   

預設綁定(Optional Binding 自動置空)

通過在類型變數後,加上?,可以實現預設綁定為nil

var window: UIWindow?

就是說,如果不對window賦值,則window的值為nil。

這與Objective-C中在ARC模式下自動置nil的原理是不同的,在Swift中有NilType,這時候有一個新的概念,取值(Unwrapping Optionals)


取值(Unwrapping Optionals)

可以使用!將window變數中(其已預設綁定)中的非空值取出,注意一定要對非空類型取值,否則會報運行錯誤。



預設鏈



使用Unowned References解決循環參考



相關文章

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.