swift里面有optional可选类型情况,也叫封包处理
可以通过if let进行解包 判断非空的情况才把值取出来
具体参见如下代码
//----------------------------------if let进行 解包
var prop : String? // Optional 封包对象
//prop = nil //赋值 空
prop = "test not nil"//赋值 string
//print(prop!)//调用要带上! 进行解包 nil类型解包会报错
//如果prop的值是nil 条件会判断为false 大括号里面的代码会跳过;
//如果不是nil 会把值赋给let后面的常量 代码块中也会执行 并且使用这个常量;完成解包
var greeting = "hello"
if let name = prop {
greeting = "hello,\(name)"
}
print (greeting)
空打印如下
hello
非空打印如下
hello,test not nil
网友评论