创建单例的正确姿势

Posted zzlei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建单例的正确姿势相关的知识,希望对你有一定的参考价值。

方法 1:

  声明 :+ (instancetype)sharedInstance  单例方法

  重写:+ (instancetype)allocWithZone:(struct _NSZone *)zone+(instancetype)alloc+(instancetype)new 都会走 allocWithZone ,多以直接重写 allocWithZone 就ok了)

     - (instancetype)copy

       - (instancetype)mutableCopy

  完整代码:

+ (instancetype)sharedInstance {
    
    static MyPerson *person = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        person = [[super allocWithZone:nil] init];
    });
return person; } + (instancetype)allocWithZone:(struct _NSZone *)zone {
return [MyPerson sharedInstance]; } - (instancetype)copy {
return [MyPerson sharedInstance]; } - (instancetype)mutableCopy {
return [MyPerson sharedInstance]; }

方法 2:

  声明:+ (instancetype)sharedInstance  单例方法

  然后让其他可能创建该对象的方法不可用,这里使用到  __attribute__  。这样在调用下列方法时,编译会报错。

  完整代码:

+ (instancetype)sharedInstance;
+ (instancetype) alloc __attribute__((unavailable("use sharedInstance")));
+ (instancetype) new __attribute__((unavailable("use sharedInstance")));
- (instancetype) copy __attribute__((unavailable("use sharedInstance")));
- (instancetype) mutableCopy __attribute__((unavailable("use sharedInstance")));

 

  

以上是关于创建单例的正确姿势的主要内容,如果未能解决你的问题,请参考以下文章

Go语言实现单例的正确姿势

设计模式之单例模式

Swift中编写单例的正确方式

单例模式在项目中正确的使用姿势---java

单例的正确初始化方法

单例的线程安全及序列化问题