Why do the courses at Stanford use the lazy initia

2019-05-11 06:59发布

问题:

This question already has an answer here:

  • When to use lazy instantiation in iOS? 4 answers

Why does the course at Stanford use the lazy initialization for all getters?

Is this correct? Does it have any real advantage?

One advantage (for me) is that the init method can become much shorter and you need not check if a variable is allocated.

回答1:

The idea is to load resources on demand. This way everything loads faster and when needed. In the cases it's not used, it doesn't allocate additional memory.