1:Thread;
2:Cocoa Operations;
3:Grand Central dispatch;
简介:
Thread是抽象层次最低的,另外两种线程应用给予thread进行了封装,对于程序员而言,thread相对麻烦,需要程序员管理线程周期,但是效率最高。thread包含两种:Cocoa threads——使用NSThread 或直接从 NSObject 的类方法 performSelectorInBackground:withObject: 来创建一个线程;POSIX threads: 基于 C 语言的一个多线程库。
创建NSThread的方式有三种:
一:[NSThread detachNewThreadSelector:@selector(myThreadMethod:) toTarget:self withObject:nil]; 调用立即创建一个新线程执行 *** 作
二:NSThread* myThread = [[NSThread alloc] initWithTarget:self selector:@selector(myThreadMethod:) object:nil]; [myThread start]; NSThread初始化之后,新的线程并没有执行,而是调用 start 时才会创建线程执行。这种方法相对上面的方法更加灵活,在启动新的线程之前,对线程进行相应的 *** 作,比如设置优先级,加锁。
三:[myObj performSelectorInBackground:@selector(myThreadMainMethod) withObject:nil]; 利用 NSObject 的类方法 performSelectorInBackground:withObject: 来创建一个线程:
以上都可以在新的线程中调用performSelectorOnMainThread: withObject:waitUntilDone:更新UI,因为子线程不能直接更新UI。
线程同步与锁:
有很多时候多个线程之间会访问相同的数据,如何避免a线程和b线程之间的冲突,以及执行顺序等需要程序员考虑,这个时候需要用到NSCondition,NSLock,确保线程(原子 *** 作)安全。
用NSCodition同步执行的顺序,NSCodition 是一种特殊类型的锁,我们可以用它来同步 *** 作执行的顺序。它与 mutex 的区别在于更加精准,等待某个 NSCondtion 的线程一直被 lock,直到其他线程给那个 condition 发送了信号。下面我们来看使用示例:
- (voID)applicationDIDFinishLaunching:(UIApplication *)application {
tickets = 100;
count = 0;
ticketCondition = [[NSCondition alloc] init]; // 锁对象
ticketsThreadone = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];
[ticketsThreadone setname:@"Thread-1"];
[ticketsThreadone start];
ticketsThreadtwo = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];
[ticketsThreadtwo setname:@"Thread-2"];
[ticketsThreadtwo start];
[window makeKeyAndVisible];
}
- (voID)run{
while (TRUE) {
[ticketsCondition lock]; // 上锁
if(tickets > 0){
[NSThread sleepForTimeInterval:0.5];
count = 100 - tickets;
NSLog(@"当前票数是:%d,售出:%d,线程名:%@",tickets,count,[[NSThread currentThread] name]);
tickets--;
} else {
break;
}
[ticketsCondition unlock];
}
在应用程序主线程中做事情:
performSelectorOnMainThread:withObject:waitUntilDone:
performSelectorOnMainThread:withObject:waitUntilDone:modes:
在指定线程中做事情:
performSelector:onThread:withObject:waitUntilDone:
performSelector:onThread:withObject:waitUntilDone:modes:
在当前线程中做事情:
performSelector:withObject:afterDelay:
performSelector:withObject:afterDelay:inModes:
取消发送给当前线程的某个消息
cancelPrevIoUsPerformRequestsWithTarget:
cancelPrevIoUsPerformRequestsWithTarget:selector:object:
Cocoa Operetions
总结以上是内存溢出为你收集整理的iOS之多线程编程:三个层次线程应用全部内容,希望文章能够帮你解决iOS之多线程编程:三个层次线程应用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)