迷路草丛

文章
8
资源
0
加入时间
2年10月17天

if case, guard case, for case

原文if case let语句 case let x = y 模式允许你检查 y 是否能匹配 x。而 if case let x = y { … } 严格等同于 switch y { case let x: … }:当你只想与一条 case 匹配时,这种更紧凑的语法尤其有用。有多个 case 时更适合使用 switch。假设我们要用以下的枚举数组判断是否是男性然后打印,正常如下方法使...