单例设计模式之懒汉式(枚举实现)
Posted waibizi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单例设计模式之懒汉式(枚举实现)相关的知识,希望对你有一定的参考价值。
package com.waibizi.demo07; @SuppressWarnings("all") public class Singleton_pattern { public static void main(String[] args) { // TODO Auto-generated method stub Singleton instance=Singleton.instance; Singleton instance1=Singleton.instance; System.out.println(instance.hashCode()); System.out.println(instance1.hashCode()); } } //使用枚举实现单例设计模式 //优点:使用JDK1.5提供的枚举来实现单例设计模式,不仅能避免多线程同步问题,而且还能防止反序列化创建新的对象,这种方式是Effective java中提倡的方式 enum Singleton{ instance; //属性 public void sayOK() { System.out.println("OK"); } }
以上是关于单例设计模式之懒汉式(枚举实现)的主要内容,如果未能解决你的问题,请参考以下文章
Java 设计模式 -- 单例模式的实现(饿汉式枚举饿汉式懒汉式双检锁懒汉式内部类懒汉式)jdk 中用到单例模式的场景DCL实现单例需用volatile 修饰静态变量
Java 设计模式 -- 单例模式的实现(饿汉式枚举饿汉式懒汉式双检锁懒汉式内部类懒汉式)jdk 中用到单例模式的场景DCL实现单例需用volatile 修饰静态变量