swift swift中的基本switch语句

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift swift中的基本switch语句相关的知识,希望对你有一定的参考价值。

func decoder(input: Character) -> Int {
    switch input {
        case "b", "c", "d": return 4
        case "f", "g": return 67
    default: return 3
        
    }
}

以上是关于swift swift中的基本switch语句的主要内容,如果未能解决你的问题,请参考以下文章

Xcode 6.1 if/else/for/switch 语句不自动完成(仅限 Swift)

swift-分支语句

Swift和SwiftUI

Swift中switch强大的模式匹配

Swift - 通过 switch 语句为 CAGradientLayer 设置动画

在swift中使用switch语句的布尔函数[重复]