06 2022 档案

摘要: 阅读全文
posted @ 2022-06-13 13:30 青山不语 阅读(15) 评论(0) 推荐(0)
摘要:1,饿汉模式 1 //饿汉单例模式 2 public class SingleInstance01 { 3 public static SingleInstance01 instance = new SingleInstance01(); 4 5 private SingleInstance01() 阅读全文
posted @ 2022-06-13 06:40 青山不语 阅读(23) 评论(0) 推荐(0)