Something I still not quite understand about Swift ... let's say I want a property that instantiates a class in a base class used for several sub classes, e.g. ...
let horse = Horse();
Is horse
instantiated right after app/class initialisation or when the property is accessed for the first time?
On the other hand using lazy var
guarantees that the property is only instantiated the first time it is accessed ...
lazy var horse = Horse()
But then horse
is not a constant. So in this case if I access horse
multiple times I would get multiple instances of horse
created, right?
What if I wanted both, a lazy property that is also a constant?
Not exactly. Say you have a class
Farm
and insideFarm
there ishorse
property.In this case
horse
property is initialized when class instance initialized. If you make itlazy
you have to make it mutable too.In this case,
horse
property is initialized when it is accessed the first time. And later when it is accessed again it returns the same instance again instead of reinitializing it. But since it is a mutable property you can assign a new instance ofHorse
to it. After you assign it new value it will return this new value whenever it is accessed.EDIT: If
let horse = Horse()
is defined in global space then it is lazily created at first access.