单例模式之懒汉式
Posted SiberiaDante
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单例模式之懒汉式相关的知识,希望对你有一定的参考价值。
//懒汉式:
public class SingleTonDemo { /* * 私有化构造方法 */ private SingleTonDemo() { } /* * 创建对象 */ public static SingleTonDemo instance = null;//不创建对象,需要的时候才会创建 public static SingleTonDemo getInstance() { if (instance == null) {//提高性能 synchronized (SingleTonDemo.class) {//判断锁是否可用,耗资源 if (instance == null) {//判断是否为空 instance = new SingleTonDemo(); } } } return instance; }
以上是关于单例模式之懒汉式的主要内容,如果未能解决你的问题,请参考以下文章