Swift3新路程(1)switch case

前端之家收集整理的这篇文章主要介绍了Swift3新路程(1)switch case前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


enum StringCase:String {
    case One = "One"
    case Two,Three,Four,Five
    
    func discription() -> String {
        switch self {
        case .One:
            return "One"
        case .Two:
            return "Two"
        case .Three:
            return "Three"
        case .Four:
            return "Four"
        case .Five:
            return "Five"
        }
    }
}

上面的写法是正确的,编译不会报错,因为switch对所有的case做出了列举

下面的写法是错误的,编译会报错,因为switch没有所有的case做出列举,需要添加default分支

enum StringCase:String {
    case One = "One"
    case Two,Five
    
    func discription() -> String {
        switch self {
        case .One:
            return "One"
        case .Two:
            return "Two"
        case .Three:
            return "Three"
        case .Four:
            return "Four"
        }
    }
}
原文链接:https://www.f2er.com/swift/322979.html

猜你在找的Swift相关文章