• IOS单例的设计模式


    static SurveyRunTimeData *sharedObj = nil; //第一步:静态实例,并初始化置为nil。

    @implementation SurveyRunTimeData

    + (SurveyRunTimeData*) sharedInstance    //第二步:实例构造检查静态实例是否为nil。

    {    

    @synchronized (self)     {

            if (sharedObj == nil)

            {            

          [[self alloc] init];

            }    

    }

        return sharedObj;

    }

    + (id) allocWithZone:(NSZone *)zone         //第三步:重写allocWithZone方法 {

        @synchronized (self) {        

      if (sharedObj == nil) {

                sharedObj = [super allocWithZone:zone];

                return sharedObj;

            }

        }

        return nil;

    }

    - (id) copyWithZone:(NSZone *)zone 

            //第四步

    {    

    return self;

    }

    - (id) retain {

        return self;

    }

    - (unsigned) retainCount {

        return UINT_MAX;

    }

    - (oneway void) release {   

      }

    - (id) autorelease {

        return self;

    }

    - (id)init {

        @synchronized(self) {

            [super init];            

    //往往放一些要初始化的变量.        

    return self;    

    }

    }

    @end

  • 相关阅读:
    Python操作Excel表格
    Python爬虫实战:爬取美食节川菜信息
    超级实用的Python网络爬虫反反爬策略之构造UA池及IP代理池
    Python 静态方法
    IDEA连接远程服务器Docker部署Spring Boot项目
    Dockerfile 解析
    Python爬虫实战-统计博客园阅读量问题
    Docker 容器数据卷
    Docker镜像
    PL/SQL
  • 原文地址:https://www.cnblogs.com/zhibin/p/4118120.html
Copyright © 2020-2023  润新知