设为首页 加入收藏

TOP

iOS中的单例模式(一)
2017-10-13 10:33:57 】 浏览:8242
Tags:iOS 单例 模式

1、 单例模式的概念

单例模式是一种常用的软件设计模式。在它的核心结构中只包含一个被称为单例的特殊类。通过单例模式可以保证系统中一个类只有一个实例而且该实例易于外界访问,从而方便对实例个数的控制并节约系统资源。如果希望在系统中某个类的对象只能存在一个,单例模式是最好的解决方案。

2、书写步骤

  • 创建类方法,返回对象实例.以shared  default current开头。
  • 创建一个全局变量用来保存对象的引用
  • 判断对象是否存在,若不存在,创建对象

3、具体单例模式的几种模式

  • 第一种单例模式
 1 非线程安全写法 
 2 
 3 static UserHelper * helper = nil;
 4 
 5 + (UserHelper *)sharedUserHelper {
 6 
 7 if (helper == nil) {
 8 
 9 helper = [[UserHelper alloc] init];
10 
11 }
12 
13     return helper;
14 
15 }
  • 第二种单例模式
 1 线程安全写法1
 2 
 3  
 4 
 5 static UserHelper * helper = nil;
 6 
 7 + (UserHelper *)sharedUserHelper {
 8 
 9     @synchronized(self) {
10 
11         
12 
13         if (helper == nil) {
14 
15             helper = [[UserHelper alloc] init];
16 
17         }
18 
19     }
20 
21     return helper;
22 
23 }
  • 第三种单例模式     
 1 + (void)initialize {
 2 
 3     
 4 
 5     if ([self class] == [UserHelper class]) {
 6 
 7         helper = [[UserHelper alloc] init];
 8 
 9     }
10 
11 }
  • 第四种单例模式
 1 线程安全写法3(苹果推荐,主要用这个)
 2 
 3 static UserHelper * helper = nil;
 4 
 5 + (UserHelper *)sharedUserHelper {
 6 
 7  
 8 
 9 static dispatch_once_t onceToken;
10 
11     dispatch_once(&onceToken, ^{
12 
13         helper = [[UserHelper alloc] init];
14 
15     });
16 
17     
18 
19     return helper;
20 
21 }
  1 MRC全面实现单例写法(了解)
  2 
  3  
  4 
  5 #import <Foundation/Foundation.h>
  6 
  7 #import "UserHelper.h"
  8 
  9  
 10 
 11 void func() {
 12 
 13     
 14 
 15     static dispatch_once_t onceToken;
 16 
 17     dispatch_once(&onceToken, ^{
 18 
 19         NSLog(@"haha");
 20 
 21     });
 22 
 23 }
 24 
 25  
 26 
 27 int main(int argc, const char * argv[]) {
 28 
 29     @autoreleasepool {
 30 
 31  
 32 
 33 //        [UserHelper logout];
 34 
 35         
 36 
 37         if ([UserHelper isLogin]) {
 38 
 39             
 40 
 41             UserHelper * helper = [UserHelper sharedUserHelper];
 42 
 43             NSLog(@"username = %@ password = %@",helper.userName,helper.password);
 44 
 45             
 46 
 47         } else {
 48 
 49             
 50 
 51             char name[20];
 52 
 53             char pwd[20];
 54 
 55             NSLog(@"请输入用户名");
 56 
 57             scanf("%s",name);
 58 
 59             NSLog(@"请输入密码");
 60 
 61             scanf("%s",pwd);
 62 
 63             
 64 
 65             NSString * userName = [[NSString alloc] initWithUTF8String:name];
 66 
 67             NSString * password = [[NSString alloc] initWithUTF8String:pwd];
 68 
 69             
 70 
 71             if (userName && password) {
 72 
 73                 
 74 
 75                 [UserHelper loginWithUserName:userName password:password];
 76 
 77                 
 78 
 79                 UserHelper * helper = [UserHelper sharedUserHelper];
 80 
 81                 NSLog(@"username = %@ password = %@",helper.userName,helper.password);
 82 
 83                 
 84 
 85             }
 86 
 87         }
 88 
 89         
 90 
 91 //        UserHelper * help1 = [UserHelper sharedUserHelper];
 92 
 93 //        help1.userName = @"dahuan";
 94 
 95 //        help1.password = @"123456";
 96 
 97 //        NSLog(@"%p",help1);
 98 
 99 //        NSLog(@"%@",help1.userName);
100 
101 //        NSLog(@"%@",help1.password);
102 
103 //
104 
105 //        
106 
107 //        UserHelper * help2 = [UserHelper sharedUserHelper];
108 
109 //        help2.password = @"zxc";
110 
111 //        NSLog(@"%p",help2);
112 
113 //        NSLog(@"%@",help1.userName);
114 
115 //        NSLog(@"%@",help1.password);
116 
117         
118 
119     }
120 
121     return 0;
122 
123 }
124 
125  //class.h
126 
127 #import <Foundation/Foundation.h>
128 
129  
130
首页 上一页 1 2 下一页 尾页 1/2/2
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇Operation(多线程) 下一篇ios 让WKWebview弹出键盘上的按钮..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目