C++ 写一个单例类并支持多线程

我可以为你提供一个示例:public class Singleton { private static Singleton instance; private Singleton() {} public static Singleton getInstance() { if (instance == null) { synchronized (Singleton.class) { if (instance == null) { instance = new Sin

猜你喜欢

转载自blog.csdn.net/weixin_42601608/article/details/129566048