Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade Teachers Spaces Get Certified Upgrade Teachers Spaces
   ❮   
     ❯   

KotlinInheritance


Kotlin Inheritance (Subclass and Superclass)

In Kotlin, it is possible to inherit class properties and functions from one class to another. We group the "inheritance concept" into two categories:

  • subclass (child) - the class that inherits from another class
  • superclass (parent) - the class being inherited from

In the example below,MyChildClass (subclass) inherits the properties from theMyParentClass class (superclass):

Example

// Superclass
open class MyParentClass { val x = 5}// Subclassclass MyChildClass: MyParentClass() { fun myFunction() { println(x) // x is now inherited from the superclass }}// Create an object of MyChildClass and call myFunctionfun main() { val myObj = MyChildClass() myObj.myFunction()}
Try it Yourself »

Example Explained

Use theopen keyword in front of thesuperclass/parent, to make this the class other classes should inherit properties and functions from.

To inherit from a class, specify the name of thesubclass, followed by a colon:, and then the name of thesuperclass.

Why And When To Use "Inheritance"?

- It is useful for code reusability: reuse properties and functions of an existing class when you create a new class.




×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.


[8]ページ先頭

©2009-2025 Movatter.jp