23种设计模式---单例设计模式(精华)
摘要:
单例模式 饿汉式: package cn.tedu.single; //饿汉式单例 public class Hungry { private Hungry(){ } //会造成空间的浪费,开辟了空间,却没有使用 private final static Hungry HUNGRY= new Hun 阅读全文
posted @ 2020-06-14 20:47 liqiangbk 阅读(247) 评论(0) 推荐(0) 编辑