Java设计模式——单例模式

 1 package com;
 2 
 3 public class LazySingletonTest {
 4     public static void main(String[] args) {
 5         LazySingleton inst1 = LazySingleton.getInstance();
 6         LazySingleton inst2 = LazySingleton.getInstance();
 7         System.out.println(inst1 == inst2);
 8     }
 9 }
10 
11 class LazySingleton{
12     private static LazySingleton instance;
13     private LazySingleton(){
14 
15     }
16 
17     public static LazySingleton getInstance() {
18         if(instance==null){
19             synchronized (LazySingleton.class) {
20                 if(instance==null)
21                     instance = new LazySingleton();
22             }
23         }
24         return instance;
25     }
26 }

 

Java设计模式——单例模式

上一篇:Python爬虫(四)——数据保存


下一篇:spring JdbcTemplate 在项目中的浅层(5个使用场景)封装