在 Kotlin 中,可以将类属性和函数从一个类继承到另一个类。我们将 "inheritance concept" 分为两类:
在下面的例子中,MyChildClass
(子类)继承属性 MyParentClass
类(超类):
// Superclass
open class MyParentClass {
val x = 5
}
// Subclass
class MyChildClass: MyParentClass() {
fun myFunction() {
println(x) // x is now inherited from the superclass
}
}
// Create an object of MyChildClass and call myFunction
fun main() {
val myObj = MyChildClass()
myObj.myFunction()
}
亲自试一试 »
使用open
前面的关键字超类/parent,使该类成为其他类应该继承属性和函数的类。
要从类继承,请指定类的名称子类,后跟一个冒号:
,然后是名称超类。
- 它对于代码可重用性很有用:创建新类时重用现有类的属性和函数。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!