Kotlin 继承


Kotlin 继承(子类和超类)

在 Kotlin 中,可以将类属性和函数从一个类继承到另一个类。我们将 "inheritance concept" 分为两类:

  • 子类(child) - 从另一个类继承的类
  • 超类(parent) - 继承自的类

在下面的例子中,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,使该类成为其他类应该继承属性和函数的类。

要从类继承,请指定类的名称子类,后跟一个冒号:,然后是名称超类

为什么以及何时使用"Inheritance"?

- 它对于代码可重用性很有用:创建新类时重用现有类的属性和函数。