设计模式--单例模式

2020-12-14  本文已影响0人  caoww

单例模式概述

单例模式实现方式

饿汉式

类加载后就会将对象加载到内存中,保证对象唯一

// java实现
public class Singleton {
  private static Singleton instance = new Singleton();
  private Singleton() {}
    
  public static Singleton getInstance() {
    return instance;
  }
}

//kotlin实现
object Singleton{
}

懒汉式

懒汉模式在调用的时候才会创建对象,延迟创建,多线程可能会创建多个实例对象

// java:
public class Singleton{
  private static Singleton instance = null;
  private Singleton() {}
  
  public static Singleton getInstance() {
    if(instance == null) {
      instance = new Singleton();
    }
    return instance;
  }
}
// kotlin:
class Singleton private constructor() {
  companion object {
    private var instance: Singleton? = null
      get() {
        if(field == null) {
          field = Singleton()
        }
        return field
      }
      fun get() {
        return instance!!
      } 
  }
}

线程安全

线程安全是懒汉式的扩展,并解决多线程下,仍然保持只创建单个实例,在创建对象的方法加synchronized关键字修饰,这样就可以保证实例对象只会创建一个。

// java:
public class Singleton{
  private static Singleton instance = null;
  private Singleton() {}
  
  public static synchronized Singleton getInstance() {
    if(instance == null) {
      instance = new Singleton();
    }
    return instance;
  }
}

// kotlin:
class Singleton private constructor() {
  companion object {
    private var instance: Singleton? = null
      get() {
        if(field == null) {
          field = Singleton()
        }
        return field
      }
      @Synchronized
      fun get() {
        return instance!!
      } 
  }
}

双重检索

双重检索是线程安全方式的进阶版,第一次判空是为了判断当前对象是否被创建,第二次判断在synchronized后,是为了判断多个线程同时进入的情况下,对象是否已经创建,这样就保证了实例对象创建了一次。如:同时有两个对象同时进入bloc到synchronized这,这个时候,线程A抢到资源,就会进入到synchronized的代码块内,这个时候就会执行创建实例对象,完成之后线程B才会进入,这个时候再判断是否为空的时候就会为false,可以直接返回对象。

// java:
public class Singleton{
  private volatile static Singleton instance = null;
  private Singleton() {}
  
  public static Singleton getInstance() {
    if(instance == null) {
      synchronized() {
        if(instance == null) {
           instance = new Singleton();
        }
      }
    }
    return instance;
  }
}
// kotlin:
// 无参数情况
class Singleton private constructor() {
  companion object {
    val INSTANCE: Singleton by lazy(mode = LazyThreadSafetyMode.SYNCHRONIZED) {
      Singleton()
    }
  }
}
// 有参数情况
class Singleton private constructor(v1: Int) {
  companion object {
    @Volatile
    private var instance: Singleton? = null
    fun getInstance(property: Int) = 
      instance ?: synchronized(this) {
        instance ?: Singleton(property).also {
          instance = it
        }
      }
  }
}

静态内部类

静态内部类能保证线程唯一也是线程安全的,也能延迟加载,主要是类加载机制,当类被加载的时候,内部类并不会被加载,只有使用的时候才会创建实例加载到内存中,所以能保证实例对象唯一,也能延迟加载

// java:
public class Singleton {
  private Singleton() {}
  
  private static class SingletonProvider {
    private static Singleton instance = new Singleton();
  }
  
  public static Singleton getInstance() {
    return SingletonProvider.instance;
  }
}
// kotlin:
class Singleton private constructor(){
  companion object {
    val instance = SingletonProvider.holder
  }
  
  private object SingletonProvider {
    val holder = Singleton()
  }
}

为什么要使用单例模式

项目中常见的单例模式

上一篇下一篇

猜你喜欢

热点阅读