博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
英语----名词性从句的混合练习(下)
阅读量:5037 次
发布时间:2019-06-12

本文共 798 字,大约阅读时间需要 2 分钟。

#import <Foundation/Foundation.h>

 @interface Person : NSObject

 +(instancetype)sharePerson;

 @end

 #import "Person.h"

 @implementation Person

 static Person *_instance = nil;

 +(void)load{

    _instance = [[self alloc] init];// 已进入就调用

}

 +(instancetype)sharePerson{

    return _instance;

}

 +(instancetype)alloc{

    if (_instance) { // 禁止调用alloc

     NSException *exception =    [NSException  exceptionWithName:NSInternalInconsistencyException reason:@"There can only be on Person instance" userInfo:@{}];

        [exception raise];// 抛出异常

    }

    return [super alloc];

}

 @end

/*单例子*/ 

+ (instancetype)shareInstance{

     static Person *sharedInstance = nil;

    static dispatch_once_t prdictate;

    dispatch_once(&prdictate, ^{

              sharedInstance = [[Person alloc] init];

    });

    return sharedInstance;

}

 

转载于:https://www.cnblogs.com/1018475062qq/p/7071878.html

你可能感兴趣的文章
Kinect人机交互开发实践
查看>>
百度编辑器UEditor ASP.NET示例Demo 分类: ASP.NET...
查看>>
JAVA 技术类分享(二)
查看>>
android客户端向服务器发送请求中文乱码的问
查看>>
UOJ#220. 【NOI2016】网格 Tarjan
查看>>
Symfony翻译教程已开课
查看>>
Python模块之pickle(列表,字典等复杂数据类型与二进制文件的转化)
查看>>
通过数据库表反向生成pojo类
查看>>
css_去掉默认样式
查看>>
TensorFlow2.0矩阵与向量的加减乘
查看>>
NOIP 2010题解
查看>>
javascript中的each遍历
查看>>
String中各方法多数情况下返回新的String对象
查看>>
浅谈tcp粘包问题
查看>>
UVA11524构造系数数组+高斯消元解异或方程组
查看>>
排序系列之——冒泡排序、插入排序、选择排序
查看>>
爬虫基础
查看>>
jquery.lazyload延迟加载图片第一屏问题
查看>>
HDU 1011 Starship Troopers (树形DP)
查看>>
手把手教你写DI_1_DI框架有什么?
查看>>