Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is lazy allocation?

Tags:

What does lazy allocation of objects mean and how is it useful?

like image 278
lajos Avatar asked Apr 03 '09 05:04

lajos


1 Answers

Lazy allocation simply means not allocating a resource until it is actually needed. This is common with singleton objects, but strictly speaking, any time a resource is allocated as late as possible, you have an example of lazy allocation.

By delaying allocation of a resource until you actually need it, you can decrease startup time, and even eliminate the allocation entirely if you never actually use the object. In contrast, you could pre-allocate a resource you expect to need later, which can make later execution more efficient at the expense of startup time, and also avoids the possibility of the allocation failing later in program execution.

The following code provides an example of a lazily-allocated singleton:

public class Widget {     private Widget singleton;      public static Widget get() {         if (singleton == null) {             singleton = new Widget();         }         return singleton;     }      private Widget() {         // ...     }      // ... } 

Do note that this code isn't threadsafe. In most cases, access to the get() method should be synchronized in some fashion.

A similar (and perhaps more general) concept is lazy initialization.

like image 116
Derek Park Avatar answered Sep 28 '22 01:09

Derek Park