Swift 模型屬性

來源:互聯網
上載者:User

標籤:override   init   nbsp   簡化   初始化   關鍵字   self   sel   super   

 1 、  // 定義模型屬性時,一般定義為可選的,可以簡化代碼,不需要寫 init 方法
    // 如果是基礎資料型別 (Elementary Data Type),不能設定為可選的,而且要設定初始值

    var name: String?    var age: Int = 0    private var title: String?

 

2、 如果不是可選的

var name: String

第一種

    // 無參數初始化時, 要加關鍵字 `override`    override init() {        name = "老王"    }

第二種

    // 初始化方法是 先初始化自己,再初始化父類    init(name: String) {        self.name = name                super.init()    }

 

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.