In Java you can declare a private final member variable and then initialize it from your constructor, which is very useful and is a very common thing to do:
class MyClass {
private final int widgetCount;
public MyClass(int widgetCount) {
this.widgetCount = widgetCount;
}
In Kotlin how do you initialize final member variables (val types) with values passed in to a constructor?
As well as defining the
val
in the constructor params, you can use aninit
block to do some general setup, in case you need to do some work before assigning a value:init
blocks can use the parameters in the primary constructor, and any secondary constructors you have need to call the primary one at some point, so those init blocks will always be called and the primary params will always be there.Best to read this whole thing really! Constructors