subtitle
设计模式 设计模式
单例模式:懒汉式:在真正需要使用对象时才去创建该单例类对象 public class Singleton { private static volatile Singleton singleton; private Singl
2023-10-20