首页 > 代码库 > 单例模式
单例模式
一、单例模式之饿汉模式
package com.singleton; public class SingletonHungry { private static SingletonHungry singletonHungry = new SingletonHungry(); private SingletonHungry() {} public static SingletonHungry getInstance() { return singletonHungry; } }
二、懒汉模式
package com.singleton; public class SingletonLazy { private static SingletonLazy singletonLazy; private SingletonLazy() {} public synchronized static SingletonLazy getInstance() { if(singletonLazy == null) { singletonLazy = new SingletonLazy(); } return singletonLazy; } }
三、测试
package com.singleton; public class Test { public static void main(String[] args) { SingletonHungry singletonHungry1 = SingletonHungry.getInstance(); SingletonHungry singletonHungry2 = SingletonHungry.getInstance(); System.out.println(singletonHungry1 == singletonHungry2); SingletonLazy singletonLazy1 = SingletonLazy.getInstance(); SingletonLazy singletonLazy2 = SingletonLazy.getInstance(); System.out.println(singletonLazy1 == singletonLazy2); } }
四、结果
true
true
单例模式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。