【swift-總結】枚舉

來源:互聯網
上載者:User

標籤:

聲明枚舉
enum Direction {    case North    case East    case West    case South}

也可以使用一個case

enum Direct {    case North, East, South}
使用枚舉
var dirct = Direction.Eastdirct = .West
相關值

可以使用枚舉儲存任何相關指

enum PersonInfo {    case Age(Int)    case Name(String)}
var person = PersonInfo.Name("ttf")switch person {case .Age(let age)://獲得這個值    print("person‘s age is \(age)")case .Name(let name):    print("person‘name is \(name)")}
有初始值的枚舉
/**以字元為初始值的枚舉*/enum DirWithChar: Character {    case North = "\t"    case West = "\n"    case East = "\0"    case South = "\r"}
/**以Int為初始值的枚舉*/enum DirWithInt: Int {    case North = 0    case West    case East    case South}

獲得初始值

let dirValue = DirWithInt.East.rawValue

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

【swift-總結】枚舉

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.