KotlinAndroid

[WIP]Kotlin open Class是什么意思

2018-07-06  本文已影响12人  假装在去天使之城的路上
open class Base(p: Int)
class Derived(p: Int) : Base(p)

The open annotation on a class is the opposite of Java's final: it allows others to inherit from this class. By default, all classes in Kotlin are final, which corresponds to Effective Java, 3rd Edition, Item 19: Design and document for inheritance or else prohibit it.

The default visibility, used if there is no explicit modifier, is public.

上一篇 下一篇

猜你喜欢

热点阅读