码迷,mamicode.com
首页 > 其他好文 > 详细

题二:写一个单例模式

时间:2018-05-07 19:53:43      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:一个   color   static   class   pre   模式   test   span   线程   

/**
 * 2、写一个单例模式
 */
public class Test2 {
    public static void main(String[] args) {
        System.out.println(Singleton.getSingleton().hashCode());
    }
}
class Singleton{

    private static Singleton singleton = new Singleton();
    private Singleton(){}
    public static Singleton getSingleton(){
        return singleton;
    }
}

饿汉模式,秀操作的可以来套线程锁。

题二:写一个单例模式

标签:一个   color   static   class   pre   模式   test   span   线程   

原文地址:https://www.cnblogs.com/flying607/p/9004131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!