Swift初始化Null 字元串

來源:互聯網
上載者:User

標籤:

 1 為了構造一個很長的字串,可以建立一個Null 字元串作為初始值。可以將空的字串字面量賦值給變數,也可以初始化一個新的String 執行個體: 2 var emptyString = ""               // Null 字元串字面量 3 var anotherEmptyString = String()  // 初始化 String 執行個體 4 // 兩個字串均為空白並等價。 5 您可以通過檢查其 Boolean 類型的 isEmpty 屬性來判斷該字串是否為空白: 6 複製純文字新視窗 7  8 if emptyString.isEmpty { 9     println("什麼都沒有")10 }11 // 列印輸出:"什麼都沒有"

 

Swift初始化Null 字元串

相關文章

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.