美文网首页
2019-03-20

2019-03-20

作者: 奈斯_960c | 来源:发表于2019-03-20 08:26 被阅读0次

classPerson {

    funcrun(){

        print("向前全速奔跑")

    }

}

classTeacher:Person{

    functeach() {

        print("上课要迟到了")

        super.run()

    }

}

classStudent:Person{

    varname =""{

        willSet(new){

            print("新值:\(new)")

        }

        didSet{

            print("旧值:\(oldValue)")

        }

    }

    overridefuncrun() {

        print("体育课上跑了800米")

    }

    varheight:String{

        return"175cm"

    }

    lazyvarage:String="18岁"

    init(name:String,age:String) {

        super.init()

        self.name= name

        self.age= age

    }

    publicfuncshow() {

        print("名字:\(name),年龄:\(age),身高:\(height)")

    }

    deinit {

    }

}

相关文章

网友评论

      本文标题:2019-03-20

      本文链接:https://www.haomeiwen.com/subject/gjeamqtx.html