摘要:
构造单例bean的方式有很多种,我们来看一下其中一种,饿汉式 ```java public class Singleton1 implements Serializable { //1、构造函数私有 private Singleton1() { if (INSTANCE != null) { thr 阅读全文
posted @ 2023-05-31 16:04
BestJaxXu
阅读(269)
评论(0)
推荐(1)
浙公网安备 33010602011771号