运行 ❯
获取您的
个人
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
// Superclass open class MyParentClass { val x = 5 } // Subclass class MyChildClass: MyParentClass() { fun myFunction() { println(x) // x is defined in the superclass } } // Create an object of the MyChildClass and call myFunction fun main() { val myObj = MyChildClass() myObj.myFunction() }
5