摘要: 单例模式 饿汉式: /** * 饿汉式单例(提前把对象创建) * 可能会浪费空间,提前把对象创建好了,但是不一定会用。 */public class Hungry { private Hungry(){ } private final static Hungry HUNGRY=new Hungry( 阅读全文
posted @ 2020-04-20 18:16 kujian921 阅读(103) 评论(0) 推荐(0)