What is lazy initialization of objects? How do you do that and what is the advantages?
|
|
As others have mentioned, lazy initialization is delaying initialization until a component or object is used. You can view lazy initialization as an runtime application of the YAGNI principle - "You ain't gonna need it" The advantages from an application perspective of lazy initialization are that users don't have to pay the initialization time for features they will not use. Suppose you were to initialize every component of your application up front. This could create a potentially long start time - users would have to wait dozens of seconds or minutes before your application is ready to use. They're waiting on and paying for initialization of features they may never use or not use right away. Instead, if you defer initializing those components until use time, your application will start up much quicker. The user will still have to pay the startup cost when using other components, but that cost will be amortized across the run of the program and not condensed into the beginning, and the user may associate the initialization time of these objects with the features they are using. |
||
|
|
|
|
In general computing terms, 'lazy evaluation' means to defer the processing on something until you actually need it. The main idea being that you can sometimes avoid costly operations if you turn out to not need it, or if the value would change before you use it. A simple example of this is System.Exception.StackTrace. This is a string property on an exception, but it isn't actually built until you access it. Internally it does something like:
This saves you the overhead of actually calling buildStackTrace until someone wants to see what it is. Properties are one way to simply provide this type of behavior. |
||
|
|
|
|
The database examples that have been mentioned so far are good, but it's not restricted to just the data access layer. You could apply the same principles to any situation where performance or memory can be a concern. A good example (although not .NET) is in Cocoa, where you can wait until the user requests a window to actually load it (and its associated objects) from the nib. This can help keep memory usage down and speed up the initial application load, especially when you're talking about things like Preferences windows that won't be needed until some later time, if ever. |
||
|
|
|
|
Lazy Initialization is the concept of deferring object creation until the object is actually first used. If used properly, it can result in significant performance gains. Personally, I've used Lazy Initialization when creating my own hand-rolled ORM in .NET 2.0. When loading my collections from the database, the actual items in the collection were lazy initialized. This meant that the collections were created quickly, but each object was loaded only when I required it. If you're familiar with the Singleton pattern, you've probably seen lazy initialization in action as well.
In this case, the instance of SomeClass is not initialized until it is first needed by the SomeClassSingleton consumer. |
||
|
|
|
|
As what I have understood about lazy init so far, is that the program does not load/request all data a once. It waits for the use of it before requesting it from eg. a SQL-server. If you have a database with a large table joined with a large amount of subtables and you dont require the details joined from the other tabels unless going into "edit" or "view details", then Lazy Init. will help the application to go faster and first "lazy load" the detailsdata upon needed. In SQL or LINQ you can set this "setting" on your database model pr. dataelement. Hope this makes any sense to your question? A webclient (eg. a browser) does the same thing. The images are "lazy loaded" after the HTML and AJAX is also a "sort of lazy init" if used right. |
||
|
|
|
|
Lazy Initialization is a performance optimization where you defer (potentially expensive) object creation until just before you actually need it. One good example is to not create a database connection up front, but only just before you need to get data from the database. The key reason for doing this is that (often) you can avoid creating the object completely if you never need it. |
||||||
|
