11.2 Swift中super关键字

前端之家收集整理的这篇文章主要介绍了11.2 Swift中super关键字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

/**

super 关键字

派生类中的方法实现,可以通过super关键字来引用基类的属性方法

super不是父类的意思,是编译器的符号,只是告诉去父类方法属性,略过当前类不找。

*/

class Human {

var name: String = ""

var id: Int = 0

func eat() -> Void {

print("eat")

}

func drink() -> Void {

print("drink")

}

func sleep() -> Void {

print("sleep")

}

}

// 子类 : 基类

class Woman: Human {

func birth() -> Void {

print("birth")

}

// 派生类中使用基类的方法属性

func eatandSleep() -> Void {

// 先在当前类中寻找eat,如果没有再在父类中寻找

eat()

// 告诉当前类去 当前类的父类中寻找方法 sleep

super.sleep()

birth()

}

}

let w = Woman.init()

let h = Human.init()

w.eat()

w.sleep()

w.birth()

h.eat()

h.sleep()

原文链接:https://www.f2er.com/swift/322395.html

猜你在找的Swift相关文章