单例在Objective-C中得到了很多的应用,什么时候需要使用单例呢?
在程序运行过程中需要使用一个对象,这个对象中包含特定的功能和属性,而且这个对象是静态的,而且整个程序只需要拥有一个该对象例如:
1.控制程序执行的命令器(我也不知道是什么)
2.管理数据库
3.音效控制
4.文件处理
.........
1.单例模式的要点:
显然单例模式的要点有三个;一是某个类只能有一个实例;二是它必须自行创建这个实例;三是它必须自行向整个系统提供这个实例。
2.单例模式的优点:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49 |
//1,定义一个静态的全局的变量 static Settings *sharedSettings = nil ; //2,创建一个类方法,用来返回该类实例 + (Settings *)sharedInstance { @synchronized ( self ){ if (sharedSettings == nil ){ sharedSettings = [[ self
alloc] init]; //做一些初始化操作 } } return
sharedSettings; } //3,重写allocWithZone方法,用来保证其他人直接使用alloc和init试图获得一个新实力的时候不产生一个新实例, + ( id )allocWithZone:( NSZone
*)zone { @synchronized ( self ) { if
(sharedSettings == nil ) { sharedSettings = [ super
allocWithZone:zone]; } } return
sharedSettings; } //4、适当实现allocWitheZone,copyWithZone,release和autorelease + ( id )copyWithZone:( NSZone
*)zone { return
self ; } - ( id )retain { return
self ; } - (unsigned)retainCount { return
UINT_MAX; } - (oneway void )release { } - ( id )autorelease { return
self ; } |
原文:http://www.cnblogs.com/azxfire/p/3770323.html