Properties
Declaring properties
To use a property, simply refer to it by its name:
Getters and setters
Syntax for declaring a property:
The initializer, getter, and setter are optional.
The property type is optional if it can be inferred from the initializer or the getter's return type, as shown below:
The full syntax of a read-only property declaration differs from a mutable one in two ways:
it starts with
valinstead ofvarit does not allow a setter
You can define custom accessors for a property.
If you define a custom getter, it will be called every time you access the property (this way you can implement a computed property).
You can omit the property type if it can be inferred from the getter:
If you define a custom setter, it will be called every time you assign a value to the property, except its initialization.
By convention, the name of the setter parameter is value, but you can choose a different name if you prefer.
If you need to annotate an accessor or change its visibility, but you don't want to change the default implementation, you can define the accessor without defining its body:
Backing fields
In Kotlin, a field is only used as a part of a property to hold its value in memory.
Fields cannot be declared directly.
However, when a property needs a backing field, Kotlin provides it automatically.
This backing field can be referenced in the accessors using the field identifier:
The field identifier can only be used in the accessors of the property.
A backing field will be generated for a property if it uses the default implementation of at least one of the accessors, or if a custom accessor references it through the field identifier.
For example, there would be no backing field in the following case:
Backing properties
If you want to do something that does not fit into this implicit backing field scheme, you can always fall back to having a backing property:
Compile-time constants
If the value of a read-only property is known at compile time, mark it as a compile time constant using the const modifier.
Such a property needs to fulfil the following requirements:
It must be a top-level property, or a member of an object declaration or a companion object.
It must be initialized with a value of type String or a primitive type
It cannot be a custom getter
The compiler will inline usages of the constant, replacing the reference to the constant with its actual value.
However, the field will not be removed and therefore can be interacted with using reflection.
Such properties can also be used in annotations:
Late-initialized properties and variables
Normally, properties declared as having a non-nullable type must be initialized in the constructor.
However, it is often the case that doing so is not convenient.
For example, properties can be initialized through dependency injection, or in the setup method of a unit test.
In these cases, you cannot supply a non-nullable initializer in the constructor, but you still want to avoid null checks when referencing the property inside the body of a class.
To handle such cases, you can mark the property with the lateinit modifier:
Checking whether a lateinit var is initialized
To check whether a lateinit var has already been initialized, use .isInitialized on the reference to that property:
This check is only available for properties that are lexically accessible when declared in the same type, in one of the outer types, or at top level in the same file.