您好,登錄后才能下訂單哦!
如何在swift中安全的聲明一個單例?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
Talk is cheap. Show me the code.
class TestShareInstance{ var age:Int static let shareInstane:TestShareInstance = TestShareInstance(age: 3); private init(age:Int){ self.age = age; }; }
swift在類中,類變量是能夠保證線程安全,swift底層,static關鍵字的實際上是使用dispatch_once語法來實現的,如下一段swift編譯中間產物SIL語言中的代碼就能看到底層的實現.
1.staic變量被聲明為全局變量
// static TestShareInstance.shareInstane sil_global hidden [let] @static main.TestShareInstance.shareInstane : main.TestShareInstance : $TestShareInstance
2.在get方法中獲取變量調用了swift內嵌的builtin "once",實際上調用的是swift_once方法
3.在swift源碼中可以搜索到swift_once方法的內部實現如下,內部調用的就是GCD底層的dispatch_once_f,保證了單例的線程安全。
/// Runs the given function with the given context argument exactly once. /// The predicate argument must point to a global or static variable of static /// extent of type swift_once_t. void swift::swift_once(swift_once_t *predicate, void (*fn)(void *), void *context) { #if defined(__APPLE__) dispatch_once_f(predicate, context, fn); #elif defined(__CYGWIN__) _swift_once_f(predicate, context, fn); #else std::call_once(*predicate, [fn, context]() { fn(context); }); #endif }
在類中,將TestShareInstance的init方法設置為了private,這能保證其他人沒有辦法調用你的init的方法,只能調用你的shareInstane單例變量;從而保證了單例的不可修改特性。如果你要強行修改,編譯器就會警告你,具體示例如下
關于如何在swift中安全的聲明一個單例問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。