普通单例、文艺单例、二逼单例

  • 普通单例
Java代码
  1. public class Singleton {  
  2.     private static Singleton uniqueInstance = new Singleton();  
  3.       
  4.     private Singleton(){  
  5.           
  6.     }  
  7.       
  8.     public static Singleton getInstance(){  
  9.         return uniqueInstance;  
  10.     }  
  11. }  
  • 文艺单例
Java代码
  1. public class Singleton {  
  2.     private static Singleton uniqueInstance;  
  3.       
  4.     private Singleton(){  
  5.           
  6.     }  
  7.       
  8.     public static Singleton getInstance(){  
  9.         if(uniqueInstance == null){  
  10.             synchronized (Singleton.class) {  
  11.                 if(uniqueInstance == null){  
  12.                     uniqueInstance = new Singleton();  
  13.                 }  
  14.             }  
  15.         }  
  16.         return uniqueInstance;  
  17.     }  
  18. }  
  •  2逼单例
Java代码
  1. public class Singleton {  
  2.     private static Singleton uniqueInstance;  
  3.   
  4.     private Singleton() {  
  5.   
  6.     }  
  7.   
  8.     public static synchronized Singleton getInstance() {  
  9.         if (uniqueInstance == null) {  
  10.             uniqueInstance = new Singleton();  
  11.         }  
  12.         return uniqueInstance;  
  13.     }  
  14. }  

 最后的写法,如果在多线程环境下运行,可能会导致new多个对象,并不能保证真正的单例,

最好的写法是文艺范的,既能保证单例,又能给系统节约内存。第一个又称饿汉模式,哈哈。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值