Java线程安全中的单例模式


package net.kitbox.util;

/**

 * 

 * @author lldy

 * 

 */

public class Singleton {

    private Singleton(){

    }

    private static class SingletonHolder{

        private static Singleton  instance = new Singleton();

    }

    public static void method(){

        SingletonHolder.instance._method();

    }

    private void _method(){

        System.out.println("Singleton Method!");

    }

    public static void main(String[] args) {

        Singleton.method();

    }

}

此种写法利用了类加载器的加载原理,每个类只会被加载一次,这样单例对象在其内部静态类被加载的时候生成,而且此过程是线程安全的。

    其中method()方法封装内部单例对象的私有方法,作为对外接口使用,这样就可以如下调用


Singleton.method();

//频繁使用时比常见的 Singleton.getInstance().method()要省事

    另外一种方式为采用枚举来实现。

以上就是本文的全部内容了,希望大家能够喜欢。