Swift 1.2 实现单例

Swift 1.2 实现单例,第1张

概述Swift 1.2 单例实现 第一种:类常量 class Singleton: NSObject { // 类常量 static let sharedInstance = Singleton() private override init() { super.init() }} 第二种:嵌套结构体 class Singleton: NSO Swift 1.2 单例实现 第一种:类常量
class Singleton: NSObject {    // 类常量    static let sharedInstance = Singleton()        private overrIDe init() {        super.init()    }}
第二种:嵌套结构体
class Singleton: NSObject {    // 嵌套结构体    class var sharedInstance: Singleton{        struct Static {            static let instance: Singleton = Singleton()        }        return Static.instance    }        private overrIDe init() {        super.init()    }    }
第三种:GCD:dispatch_once
class Singleton: NSObject {    // GCD:dispatch_once    class var sharedInstance:Singleton {        struct Static {            static var oncetoken:dispatch_once_t = 0            static var instance:Singleton?  = nil        }        dispatch_once(&Static.oncetoken,{ () -> VoID in            Static.instance = Singleton()        })        return Static.instance!    }        private overrIDe init() {        super.init()    }    }

参考:http://stackoverflow.com/questions/24024549/dispatch-once-singleton-model-in-swift

总结

以上是内存溢出为你收集整理的Swift 1.2 实现单例全部内容,希望文章能够帮你解决Swift 1.2 实现单例所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1084515.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存