The Lazy Singleton Design Pattern in Java
- 时间:2020-09-25 11:32:47
- 分类:网络文摘
- 阅读:130 次
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;
}
}
Java
–EOF (The Ultimate Computing & Technology Blog) —
推荐阅读:山西卫视直播-山西卫视在线直播观看「高清」 山东卫视直播-山东卫视在线直播观看「高清」 辽宁卫视直播-辽宁卫视在线直播观看「高清」 吉林卫视直播-吉林卫视在线直播观看「高清」 黑龙江卫视直播-黑龙江卫视在线直播观看「高清」 内蒙古卫视直播-内蒙古卫视在线直播观看「高清」 重庆卫视直播-重庆卫视在线直播观看「高清」 广东卫视直播-广东卫视在线直播观看「高清」 深圳卫视直播-深圳卫视在线直播观看「高清」 四川卫视直播-四川卫视在线直播观看「高清」
- 评论列表
-
- 添加评论