Google News
logo
Kotlin - Interview Questions
Is inheritance compile in Kotlin?
Formal inheritance structure does not compile in the kotlin. By using an open modifier we can finalize classes.
open  class B
{
}
class  c = B()
{
} ​
Advertisement