- In java we can use keyword volatile. This attribute on variable guarantees that any thread will see the most recently written value. From Java 5 version it can be used f.e. for lazy initialization in a multi-threaded environment.
- Another way to do this is to use inner classes. This relies on the fact that inner classes are not loaded until they are referenced. So we can make assignment in the inner class.
- We can also use synchronized block, but it is estimated to be 100 times slower then using volatile variable.
Friday, 23 March 2012
Lazy initialization in java
Lazy initialization in java can be done in different ways.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment