Swift 单例
发布时间:2020-12-14 02:35:12 所属栏目:百科 来源:网络整理
导读:第一种 Global constant let _SingletonSharedInstance = Singleton()class Singleton { class var sharedInstance : Singleton { return _SingletonSharedInstance }} 第二种 Nested struct class Singleton { class var sharedInstance : Singleton { stru
第一种Global constant let _SingletonSharedInstance = Singleton() class Singleton { class var sharedInstance : Singleton { return _SingletonSharedInstance } } 第二种Nested struct class Singleton { class var sharedInstance : Singleton { struct Static { static let instance : Singleton = Singleton() } return Static.instance } } 第三种dispatch_once class Singleton { class var sharedInstance : Singleton { struct Static { static var onceToken : dispatch_once_t = 0 static var instance : Singleton? = nil } dispatch_once(&Static.onceToken) { Static.instance = Singleton() } return Static.instance! } } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |