摘要: 一、懒汉式 public class SingletonLazy{ private static SingletonLazy instance; private SingletonLazy(){} public static SingletonLazy getInstance(){ if(insta 阅读全文
posted @ 2022-08-03 12:23 不仅仅是crud 阅读(440) 评论(0) 推荐(0)