What is Lazy Loading?

前端 未结 13 1327
栀梦
栀梦 2020-11-29 16:46

What is Lazy Loading?

[Edit after reading a few answers] Why do people use this term so often?

Say you just use a ASP/ADO recordset and load it with data or

13条回答
  •  醉梦人生
    2020-11-29 17:13

    Lazy Loading is a programming practice in which you only load or initialize an object when you first need it. This can potentially give you a big performance boost, especially if you have a lot of components in your application.

    As usual, Wikipedia has more details.

提交回复
热议问题