24 lines
462 B
Java
24 lines
462 B
Java
|
package com.iluwatar;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Thread-safe Singleton class.
|
||
|
*
|
||
|
*/
|
||
|
public class ThreadSafeLazyLoadedIvoryTower {
|
||
|
|
||
|
private static ThreadSafeLazyLoadedIvoryTower instance = null;
|
||
|
|
||
|
public synchronized static ThreadSafeLazyLoadedIvoryTower getInstance() {
|
||
|
/*
|
||
|
* The instance gets created only when it is called for first time.
|
||
|
* Lazy-loading
|
||
|
*/
|
||
|
if (instance == null) {
|
||
|
instance = new ThreadSafeLazyLoadedIvoryTower();
|
||
|
}
|
||
|
|
||
|
return instance;
|
||
|
}
|
||
|
}
|