我们学到单例模式,不过就学了两种,什么饿汉式,和懒汉式(如下)
但不知到以后的实际开发中会不会用到其他种类的单例模式,求大神告诉一些其他方法来实现单例模式
- public class A{
- private static A a = new A();
- private A(){
- }
- public static A getInstance(){
- return a;
- }
- }
- [code]public class B{
- private static B b;
- private B(){
- }
- public static B getInstance(){
- if(b==null){
- b=new B();
- }
- return b;
- }
- }
复制代码 [/code] |
|