open class Base {
open fun v() {}
fun nv() {}
}
class Derived() : Base() {
override fun v() {}
}
This is an example. Can someone please
Yes, both open
keywords are mandatory in your example.
You have to distinguish between the use of open
on classes and functions.
Class: You need the open
keyword on a class if you want to inherit from it. By default all classes are final
and can not be inherited from.
Function: On a function you need open
to be able to override it. By default all functions are final
and you cannot override them.
Edit: Because I saw some confusion in the comments.
I have an internal abstract class which I can Inherit without any problem. I also can override it abstract methods as I please without declaring them as open
Abstract classes are meant to be inherited because you cannot instantiate them. in fact they are not just open
by default, they cannot be final
in the first place. final
and abstract
are not compatible. The same goes for abstract
methods, they have to be overriden!