swift 单利的三种写法

1.全局变量(单行单利方法)

class Single {
    static let sharedInstance = Single()
    private init() {}
    // 私有化初始化方法,防止外部通过 init 直接创建实例
}

swift单利几种写法的演变过程

你可能感兴趣的:(swift 单利的三种写法)