kotlin-workshop

Kotlin Workshop - Chennai

View on GitHub

Funfact: Backing Field

A property with a backing field will store the value in the form of a field. That field makes storing value in memory possible.

A property without a backing field will have to store their value in other ways than directly storing it in memory. It must be computed from other properties, or, the object itself.