The following kotlin code
val nameHash get() = name.hashCode()
can be compiled into java as follows
public final int getNameHash() {
return name.hashCode();
}
and the property nameHash disapears. However when the val is changed to var, the compiler says "Property must be initialized" What is the deeper difference between var and val?
Property is a functions
set()
&get()
. Read-only properties implement only theget()
function, but still, it's a function, so everything written in the property will be executed every time it's called.In Kotlin, keywords:
val
is the same as the read-only property, meaning it's required to implement onlyget()
function. When you putvar
keyword, compiler expects you to implement bothget()
&set()
functions.So, compile error there because your property missing
set()
function that is usually needed to store a value (or as the compiler says: must be initialized).