长路漫漫,唯剑作伴--NSThread

一、iOS支持多个层次的多线程编程,层次越高的抽象程度越高,使用也越方便,也是苹果最推荐使用的方法。下面根据抽象层次从低到高依次列出iOS所支持的多线程编程方法:

1.Thread :是三种方法里面相对轻量级的,但需要管理线程的生命周期、同步、加锁问题,这会导致一定的性能开销
2.Cocoa Operations:是基于OC实现的,NSOperation以面向对象的方式封装了需要执行的操作,不必关心线程管理、同步等问题。NSOperation是一个抽象基类,iOS提供了两种默认实现:NSInvocationOperation和NSBlockOperation,当然也可以自定义NSOperation
3.Grand Central Dispatch(简称GCD,iOS4才开始支持):提供了一些新特性、运行库来支持多核并行编程,它的关注点更高:如何在多个cpu上提升效率

二、NSThread的初始化方法

1.动态方法

- (id)initWithTarget:(id)target selector:(SEL)selector object:(id)argument; 
// 初始化线程  
NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];  
// 设置线程的优先级(0.0 - 1.0,1.0最高级)  
thread.threadPriority = 1;  
// 开启线程  
[thread start]; 

参数解析:

selector :线程执行的方法,这个selector最多只能接收一个参数
target :selector消息发送的对象
argument : 传给selector的唯一参数,也可以是nil

2.静态方法

+ (void)detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)argument;
[NSThread detachNewThreadSelector:@selector(run) toTarget:self withObject:nil];  
// 调用完毕后,会马上创建并开启新线程 

3.隐式创建线程的方法

[self performSelectorInBackground:@selector(run) withObject:nil];

三、获取当前线程

NSThread *current = [NSThread currentThread]; 

四、获取主线程

NSThread *main = [NSThread mainThread];

五、暂停当前线程

// 暂停2s  
[NSThread sleepForTimeInterval:2];  
  
// 或者  
NSDate *date = [NSDate dateWithTimeInterval:2 sinceDate:[NSDate date]];  
[NSThread sleepUntilDate:date];  

六、线程间的通信

1.在指定线程上执行操作

[self performSelector:@selector(run) onThread:thread withObject:nil waitUntilDone:YES];

2.在主线程上执行操作

[self performSelectorOnMainThread:@selector(run) withObject:nil waitUntilDone:YES];

3.在当前线程执行操作

[self performSelector:@selector(run) withObject:nil];

七、线程同步和枷锁

- (void)testThread{
while (1) {
@synchronized(self){
i=i++;
NSLog(@"%i当前线程名称:%@",i,[[NSThread currentThread] name]);
}
}
}

- (void)startThread{
NSThread *thread1 = [[NSThread alloc] initWithTarget:self selector:@selector(testThread)object:nil];
[thread1 setName:@"线程1"];
[thread1 start];
[thread1 release];
NSThread *thread2 = [[NSThread alloc] initWithTarget:self selector:@selector(testThread)object:nil];
[thread2 setName:@"线程2"];
[thread2 start];
[thread2 release];
NSThread *thread3 = [[NSThread alloc] initWithTarget:self selector:@selector(testThread)object:nil];
[thread3 setName:@"线程3"];
[thread3 start];
[thread3 release];
}

八、优缺点

1.优点:NSThread比其他两种多线程方案较轻量级,更直观地控制线程对象

2.缺点:需要自己管理线程的生命周期,线程同步。线程同步对数据的加锁会有一定的系统开销

 

posted @ 2016-10-18 16:19  来事啊  阅读(177)  评论(0编辑  收藏  举报