Actions

Kotlin

From zen2

Revision as of 23:50, 17 November 2017 by Chris (talk | contribs) (Created page with "==Class== By default Kotlin classes are final, meaning no classes can inherit from them. In order to make them not final declare them open <pre> open class Vehicle() {} </pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Class

By default Kotlin classes are final, meaning no classes can inherit from them. In order to make them not final declare them open

open class Vehicle() {}