Swift optional type (optional)---Introduction to Swift

Source: Internet
Author: User

First, mind map

Second, the Code

//This will make the code very ugly .        ifX! = Nil && Y! =Nil {print ("x or Y are not equal to null")} print ("x or Y has an empty")  //1 use??Let name:string? ="I am the most handsome"Let age:int= -        //?? Represents a selectable unpacking package//The following two execution results behave differently due to changes in values,Print (name??""+ String (age))//I'm the most handsome, because he has the lowest priorityPrint (name??"") + String (age))//I am the most handsome 18, because of the parentheses, the priority level will be very high//             //1 Using if letLetNew: String? ="the new type"Let oage:int? = -//if let new = new,//Let oage = oage {//Print (new+string (oage))//}else{//print ("New or Oage is empty")//        }     //use guard let, preceded by the newly defined name, with the use of the If let exact oppositeGuard Let Onew =New, let ages = OageElse{print ("new or oage is empty")            return} print (Onew+ String (Ages))

Swift optional type (optional)---Introduction to Swift

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.