寒城攻略:Listo 教你 25 天学会 Swift 语言 - 19 Optional Chaining


importFoundation


//***********************************************************************************************

//1.Optional Chaining(自判断链接

//_______________________________________________________________________________________________

//介绍

//自判断链接是一种可以请求和调用属性方法以及子脚本的过程,他的自判断性体现于请求或者调用的目标当前可能为空。如果自判断的目标有值,那么他的调用就会成功;如果目标为空,返回 nil

//***********************************************************************************************

//2.Optional Chaining as an Alternative to Forced Unwrapping(自判断链接可以替代强制拆包)

//通过在想调用属性方法,或者子脚本的自判断值(非空)后放一个问号,可以定义一个自判断链接

//_______________________________________________________________________________________________

//代码演示自判断链接和强制拆包的不同

class Person{ //Person 具有一个自判断 residence 属性

var residence: Residence?

}

class Residence{ //Residence 具有一个 Int 类型的 numberOfRooms

var numberOfRooms = 1

}

let john = Person() //因为 Person 类中 residence 为自判断型,所以在创建实例的时候 residence 属性认为空

//let roomCount = john.residence!.numberOfRooms //如果我们此刻想要强制拆包的话,因为 john.residence nil,程序错误,只有当 john.residence 不为空的时候,程序才能运行

if let roomCount = john.residence?.numberOfRooms{ //使用自判断链接提供了另外一种方式去获取类实例属性,这时不会抱错,而是以 nil 的形式表示 john.residence

println("john's residence has \(roomCount) room")

}

else{

println("Unable to retrieve the number of rooms")

}

john.residence = Residence() //自己定义一个 Residence 实例给 john.residence 这时它就不是空了

if let roomCount = john.residence?.numberOfRooms{

//3.Defining Model Classes for Optional Chaining(为自判断链接定义模型类)

//我们可以使用自判断链接来多层调用属性方法和子脚本

class Person1{

var residence1: Residence1?

}

class Residence1{

var rooms = [Room]() //初始化 rooms 一个空数组,存储的元素必须为 Room 类型

var numberOfRooms: Int{

return rooms.count

}

subscript(i: Int) -> Room{ //为了快速访问 rooms 数组, Residence1 定义了一个只读的子脚本,通过插入角标就可以成功调用

return rooms[i]

}

func printNumberOfRooms(){ //打印房间个数

println("The number of rooms is \(numberOfRooms)")

}

var address: Address?

}

class Room{

let name: String

init(name: String){

self.name = name

}

}

class Address{

var buildingName: String?

var buildingNumber: String?

var street: String?

func buildingIdentifier() -> String?{

if (buildingName != nil){

return buildingName

}

else{

return nil

}

}

}

//4.Calling Properties Through Optional Chaining(通过自判断链接调用属性

//代码演示使用自判断链接替代强制拆包获取属性,并且检查属性是否获取成功

let john1 = Person1()

if let roomCount = john1.residence1?.numberOfRooms{ //由于 john1.residence1 nil,所以执行 else 中的语句

println("john's residence has \(roomCount) rooms")

}

println("Unabel to retrieve the number of rooms")

}

//5.Calling Methods Through Optional Chaining(通过自判断链接调用方法

//实例代码演示自判断链接调用方法

if john1.residence1?.printNumberOfRooms() != nil {

println("is was possible to print the number of rooms")

}

println("it was not possible to print the number of rooms")

}

//6.Calling Subscripts Through Optional Chaining(通过自判断链接调用子脚本)

//实例代码演示通过自判断链接调用子脚本

if let firstRoomName = john1.residence1?[0].name {

println("The first room is \(firstRoomName)")

}

println("Unable to retrieve the first room name")

}

let Listo = Residence1()

Listo.rooms.append(Room(name: "Pin"))

Listo.rooms.append(Room(name: "Melody"))

john1.residence1 = Listo // john1.residence1 创建实例

if let firstRoomName = john1.residence1?[0].name{

println("the first room is \(firstRoomName)")

}

println("Unable to retrieve the first room name")

}

//7.CLinking Multiple Levels of Chaining(连接多层链接

//代码演示连接多层链接

if let johnsstreet = john1.residence1?.address?.street{ //此时 john1.residence1 不是 nil,但 john1.residence1.address nil,所以返回 else 语句

println("john's street name is \(johnsstreet)")

}

println("Unable to retrieve the address")

}

let address = Address()

address.buildingName = "The Larches"

address.street = "laurel Street"

john1.residence1!.address = address // john1.residence1.address 赋值

println("Unable to retrieve the address")

}

//8.Chaining on Methods With Optional Return Values链接自判断返回值的方法

//代码实例演示自判断连接的返回值方法

if let buildingIdentifier = john1.residence1?.address?.buildingIdentifier(){

println("john's building identifier is \(buildingIdentifier)") //返回的值依旧是 String 类型的自判断链接

}

if let buildingIdentifier = john1.residence1?.address?.buildingIdentifier()?.uppercaseString{ //当继续对自判断链接执行操作室,使用 ?. 来间隔方法

println("john's building identifier is \(buildingIdentifier)") //类型的自判断链接

}


转载:http://blog.csdn.net/u013096857/article/details/37872123

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...