There are some rumors which claims that var is more performant than val in context of declaring a variable in kotlin since it does not have and does not need a immutability mechanism. I could not find any resources which only focuses to "declaring a variable" part while many of them focusing multithreading and they generally end up with "val is more performant than var since the compiler does not need to check that field is changed before accessing it". So what are your opinions ?
val vs var in Kotlin. Which one is more performant when declaring a variable
436 Views Asked by Sevban Bayır AtThere are 3 best solutions below

In case of running Kotlin code on JVM, you can face some optimizations for immutable variables declared with val
. But you should never consider using one over another according to performance.
By using val
when declaring class property without specifying any access modifiers, you basically tell compiler to generate "getter" method. In case of using var
you tell it to generate "getter" and "setter", which means more code (you won't see it in a class body, it will be present in compiled code).
val
and var
are about design, you want to use val
as mush as possible since immutability is highly preferred over mutability. Even if var
was "faster" in terms of performance, you would drastically decrease code quality by replacing val
with var
everywhere.

I would agree with "val is more performat since the compiler knows it won't change before accessing it".
Imo, for real-case uses it won't affect much your performances if you choose var or val, you should use the correct variable declaration the context needs. I would never use (and the IDE usually warns you about this) a var for a variable if it's value won't change like for a constant. Don't worry about performances, it's not this what could potentally reduce your app performances.
Use the correct variable declaration for what you need, just this.
Happy coding!
It is better to stick to the proper design principles (what is more correct according to the logic) and readability here, meanwhile there are some Kotlin guides recommending choosing
val
overvar
where it is possible, and suggesting that Kotlin is "val-first" language which has a subtle impact on code design itself.Kotlin's
val
is similar tofinal
keyword in Java. Taking into account the tight connection and compatibility between Java and Kotlin, take a look at this simple performance test: https://www.baeldung.com/java-final-performance.I.e. applying the
final
keyword to variables (assumingval
in our case) can have a minor positive impact on performance. One shouldn't expect any significant performance boost in general, but it is kind of justification for these "rumors".