码迷,mamicode.com
首页 > 编程语言 > 详细

Swift 类型嵌套

时间:2018-03-28 15:39:06      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:print   struct   xiaomi   sha   logs   ring   school   辅助   dong   

1、类型嵌套

  • Swift 支持类型嵌套,把需要嵌套的类型的定义写在被嵌套的类型的 {} 中。

  • Swift 中的枚举类型可以辅助实现特定的类或者结构体的功能。

    struct SchoolUniform {
    
        enum Style: String {                    // 在结构体中嵌套枚举
            case sports = "yundongfu"
            case suit = "zhongshanzhuang"
        }
    
        enum Grade: String {                    // 在结构体中嵌套枚举
            case one = "chuyi"
            case two = "chuer"
            case three = "chusan"
        }
    
        let myStyle: Style
        let myGrade: Grade
    
        func customize() {
            print("my grade: \(myGrade), my style: \(myStyle)")
        }
    }
    let uniform4XiaoMing = SchoolUniform(myStyle: .suit, myGrade: .one)
    uniform4XiaoMing.customize()                // my grade: one, my style: suit

Swift 类型嵌套

标签:print   struct   xiaomi   sha   logs   ring   school   辅助   dong   

原文地址:https://www.cnblogs.com/QianChia/p/8663519.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!