Java线程安全中的单例模式
程序员文章站
2024-03-02 23:08:46
复制代码 代码如下:
package net.kitbox.util;
/**
*
* @author lldy
*
&...
复制代码 代码如下:
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()要省事
另外一种方式为采用枚举来实现。
以上就是本文的全部内容了,希望大家能够喜欢。