swift中 if let 与 guard let 对比,guard会降低一个分支

Posted 勇猛的小黑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift中 if let 与 guard let 对比,guard会降低一个分支相关的知识,希望对你有一定的参考价值。

 1 //用if let与guard let实现同一效果,会发现guard降低一个分支
 2 //可以用if var guard var 表示定义的变量能修改值
 3 func test(){
 4     let name:String? = "张三"
 5     
 6     if let a = name {
 7         print(a)
 8     }else{
 9         print("李四")
10     }
11 
12     guard let c = name else {
13         print("李四")
14         return
15     }
16     print("c=\(c)")
17 
18 }
19 test()

 

以上是关于swift中 if let 与 guard let 对比,guard会降低一个分支的主要内容,如果未能解决你的问题,请参考以下文章

Swift 基本语法03-"if let"和"guard let"

如何理解 if let 与guard

Swift基本语法简单知识点总结

在 Swift 中使用 if let 赋值

Swift学习笔记之---使用if和let处理空变量

Swift学习笔记之---使用if和let处理空变量