首页 > 编程语言 > 详细

java设计模式——单例模式

时间:2015-04-06 11:29:12      阅读:213      评论:0      收藏:0      [点我收藏+]

带着问题去看单例模式

1、什么是单例模式?

2、单例模式有什么用?

3、怎么实现单例模式?


/**

* 饿汉模式

*/


public class SingletonHungry(){

private SingletonHungry(){}

private static SingletonHungry singleton=new SingletonHungry();

public static SingletonHungry newSingleton(){

return singleton;

}

}


/**

* 懒汉模式

*/

public class SingletonFull(){

private SingletonFull(){}

private static SingletonFull singleton=null;

public static SingletonFull newSingleton(){

if(singleton ==null)

singleton = new SingletonFull();

return singleton;

}

}


注意区别:1、效率问题

                    2、线程安全问题


java设计模式——单例模式

原文:http://blog.csdn.net/db2china/article/details/44900195

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!