Java单例模式、饥饿模式代码实例
更新时间:2015年05月19日 11:34:43 投稿:junjie
这篇文章主要介绍了Java单例模式、饥饿模式代码实例,本文直接给出代码实例,需要的朋友可以参考下
class MyThreadScopeData { // 单例 private MyThreadScopeData() { } // 提供获取实例方法 public static synchronized MyThreadScopeData getThreadInstance() { // 从当前线程范围内数据集中获取实例对象 MyThreadScopeData instance = map.get(); if (instance == null) { instance = new MyThreadScopeData(); map.set(instance); } return instance; } // 将实例对象存入当前线程范围内数据集中 private static MyThreadScopeData instance = null; // 饥饿模式 private String name; private int age; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } }
相关文章
详解Maven 搭建spring boot多模块项目(附源码)
这篇文章主要介绍了详解Maven 搭建spring boot多模块项目(附源码),具有一定的参考价值,有兴趣的可以了解一下2017-09-09
最新评论