日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

单例Singleton

發(fā)布時間:2025/3/21 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 单例Singleton 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

先提供一個完整版:

// .h文件 @interface SingleTon : NSObject /** 獲取單例對象*/ + (instancetype)sharedInstance; + (instancetype)new __attribute__((unavailable("new unavailable, call sharedInstance instead"))); - (instancetype)init __attribute__((unavailable("init unavailable, call sharedInstance instead"))); + (instancetype)alloc __attribute__((unavailable("alloc unavailable, call sharedInstance instead"))); @end// .m文件 static SingleTon *_instance; @implementation SingleTon + (instancetype)sharedInstance {static dispatch_once_t onceToken;dispatch_once(&onceToken, ^{_instance = [[super alloc] initInstance];});return _instance; }- (instancetype)initInstance {return [super init]; }+ (instancetype)allocWithZone:(struct _NSZone *)zone {static dispatch_once_t onceToken;dispatch_once(&onceToken, ^{_instance = [super allocWithZone:zone];});return _instance; }- (id)copyWithZone:(NSZone *)zone {return _instance; } @end

?

建議構(gòu)造單例對象時,禁止調(diào)用系統(tǒng)的alloc、init等方法。以防止新加入的程序員在調(diào)用時出現(xiàn)問題;

下面來如何說說‘禁用’init等方法:

1、Clang特性(推薦,xcode不會聯(lián)想該方法)

- (instancetype)init __attribute__((unavailable("init unavailable, call sharedInstance instead")));

?

2、使用apple提供的宏

- (instancetype)init NS_UNAVAILABLE;

?

3、在.m的 init中實現(xiàn):

- (instancetype)init {[super doesNotRecognizeSelector:_cmd];return nil; }

若init方法被調(diào)用了,則拋出異常信息:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[TestManager init]: unrecognized selector sent to instance 0x600000001150'

?

4、斷言或使用NSException,在init被調(diào)用時,則拋出異常信息

// NSAssert斷言 - (instancetype)init {NSAssert(false,@"init unavailable, use sharedInstance instead");return nil; }// NSException - (instancetype)init {[NSException raise:NSGenericExceptionformat:@"init unavailable. use +[%@ %@] instead",NSStringFromClass([self class]),NSStringFromSelector(@selector(sharedInstance))];return nil; }

?

參考:http://stackoverflow.com/questions/5720029/create-singleton-using-gcds-dispatch-once-in-objective-c

轉(zhuǎn)載于:https://www.cnblogs.com/xiu619544553/p/5916812.html

總結(jié)

以上是生活随笔為你收集整理的单例Singleton的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。