zoukankan      html  css  js  c++  java
  • java设计模式_单例

    public class Singleton {
    	public static void main(String[] args) throws Exception {
    		System.out.println(Class.forName("S1"));
    		System.out.println(Class.forName("S2"));
    		System.out.println(Class.forName("S3"));
    		System.out.println(Class.forName("S4"));
    	}
    }
    
    /*
     * 预先加载法 
     * 优点:1.线程安全的, 2.在类加载的同时已经创建好一个静态对象,调用时反应速度快。
     * 缺点: 资源利用效率不高,可能这个单例不会需要使用也被系统加载
     * (资源利用效率不高,可能getInstance永远不会执行到,但是执行了该类的其他静态方法
     * 或者加载了该类(class.forName),那么这个实例仍然初始化了)
     */
    class S1 {
    	private S1() {
    		System.out.println("ok1");
    	}
    
    	private static S1 instance = new S1();
    
    	public static S1 getInstance() {
    		return instance;
    	}
    }
    
    /*
     * initialization on demand,延迟加载法 (考虑多线程) 
     * 优点:1.资源利用率高 
     * 缺点:第一次加载是发应不快,多线程使用不必要的同步开销大
     */
    class S2 {
    	private S2() {
    		System.out.println("ok2");
    	}
    
    	private static S2 instance = null;
    
    	public static synchronized S2 getInstance() {
    		if (instance == null)
    			instance = new S2();
    		return instance;
    	}
    }
    
    /*
     * initialization on demand - double check 延迟加载法改进之双重检测 (考虑多线程)
     * 优点:1.资源利用率高
     * 缺点:第一次加载是发应不快 ,由于java 内存模型一些原因偶尔会失败
     */
    class S3 {
    	private S3() {
    		System.out.println("ok3");
    	}
    
    	private static S3 instance = null;
    
    	public static S3 getInstance() {
    		if (instance == null) {
    			synchronized (S3.class) {
    				if (instance == null)
    					instance = new S3();
    			}
    		}
    		return instance;
    	}
    }
    
    /*
     * initialization on demand holder (考虑多线程) 
     * 优点:1.资源利用率高 缺点:第一次加载是发应不快
     */
    class S4 {
    	private S4() {
    		System.out.println("ok4");
    	}
    
    	private static class S4Holder {
    		static S4 instance = new S4();
    	}
    
    	public static S4 getInstance() {
    		return S4Holder.instance;
    	}
    }


  • 相关阅读:
    ZipOutputStream SharpZipLib 插件加密无法解密
    Bootstrap可视化页面布局
    Centos7中加载验证码图片报错
    Centos7中安装多版本dotnet core sdk
    NetCore中使用MySql操作数据库时发生异常
    NetCore写属性过滤时遇到的AutoFac注入的问题
    微信小程序采坑记
    PC共享网络,非软件
    hibernate HQL —— ReflectHelper.java:343
    hibernate SQL聚合查询
  • 原文地址:https://www.cnblogs.com/riskyer/p/3297265.html
Copyright © 2011-2022 走看看