The Lazy Singleton Design Pattern in Java

  • 时间:2020-09-25 11:32:47
  • 分类:网络文摘
  • 阅读:78 次

The Singleton design is one of the must-known design pattern if you prepare for your technical interviews (Big IT companies have design questions apart from coding questions). The Singleton Pattern allow one class to have only one instance at any time. You can delay the instantiation to the point when it is needed for the first time.

Below shows the Lazy Singleton Design Pattern in Java. We use the keyword volatile to tell the Java (Java Virtual Machine) that at any time, reading the member field should be made directly from/to the memory location i.e. no cache should be used.

And We need to define the private constructor to avoid external instantiation via the constructor.

Lastly, the syncrhonized keyword in Java solves the racing conditions if multithreading access occurs.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.company.singleton;
 
public class LazySingleton {
    // the instance will not be cached
    private static volatile LazySingleton instance = null; 
 
    // private constructor - avoid Instantiation
    private LazySingleton() {
    }
 
    public static synchronized LazySingleton getInstance() {
        if (instance == null) {
            instance = new LazySingleton();
        }
        return instance;
    }
}
package com.company.singleton;

public class LazySingleton {
    // the instance will not be cached
    private static volatile LazySingleton instance = null; 

    // private constructor - avoid Instantiation
    private LazySingleton() {
    }

    public static synchronized LazySingleton getInstance() {
        if (instance == null) {
            instance = new LazySingleton();
        }
        return instance;
    }
}
2091E060-120E-4C44-BAA3-7E4E0DF7BD55 The Lazy Singleton Design Pattern in Java design pattern design questions java

Java

–EOF (The Ultimate Computing & Technology Blog) —

推荐阅读:
常吃辛辣烫的食物易患消化道肿瘤  老年人可适当吃些零食保证营养需求  盘点网上那些错误的营养禁忌“神话”  食品科学博客解读网络盛传营养误区  中国运动营养食品标准 有规矩才成方圆  健康瘦身:食物搭配让减肥与营养兼顾  保健养生:秋季的健康饮食的营养原则  进口食品营养标签必须符合国家规定  如何读懂包装食品营养标签核心信息  食用油的选择:解密食用油养生之道 
评论列表
添加评论