<@U4HAWSYM8> `final` in Kotlin does not mean the s...
# announcements
o
@lex
final
in Kotlin does not mean the same as
final
in Java A
val
property's value cannot be changed, sure. But that is not what
final
means for a Kotlin property. Putting
final
on a property means it cannot be overridden in a subclass, and without
allopen
that only makes sense for inherited properties