swiftの暗黙的な選択可能な実例の詳細

1318 ワード

1、陰式選択型の基本使用

var errorMessage: String? = nil
errorMessage = "Not Found"
"The message is " + errorMessage!
暗黙的な選択可能な定義

var errorMessage: String! = nil
errorMessage = "Not Found"
"The message is " + errorMessage
隠しタイプのオプションは解凍不要ですので、隠しタイプの選択は間違いやすいです。
以上のプログラムはerror Messageがnilの場合、プログラムがエラーとなります。
2、陰式選択可能な実用的な応用

//                 
class City{

  let cityName: String
  unowned var country: Country
  init( cityName: String , country: Country){
    self.cityName = cityName
    self.country = country
  }
}

class Country{

  let countryName: String
  var capitalCity: City!

  init( countryName: String , capitalCity: String ){

    self.countryName = countryName

    self.capitalCity = City(cityName: capitalCity, country: self)
  }

  func showInfo(){
    print("This is \(countryName).")
    print("The capital is \(capitalCity.cityName).")
  }
}

let china = Country(countryName: "China", capitalCity: "Beijing")
china.showInfo()

読んでくれてありがとうございます。みなさんのご協力をお願いします。ありがとうございます。