多线程(4)——NSOperation

2015-09-23  本文已影响98人  海强_hq

本篇略长慎看

iOS中实现多线程的第四种方案--NSOperation

NSOperation实例封装了所需要执行的操作和执行操作所需的数据,并且能够以并发或者非并发的方式执行这个操作,配合使用NSOperation和NSOperationQueue也能实现多线程编程

NSOperation和NSOperationQueue实现多线程的具体步骤

NSOperation的基本使用

NSOperation是个抽象类,并不具备封装操作的能力,必须使用它的子类
使用NSOperation子类的3种方法

第一种:NSInvocationOperation的使用

    // 1.封装任务op1
    NSInvocationOperation *op1 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(run) object:nil];

    // 2.要想执行任务必须调用start
    [op1 start];
    
    // 3.封装任务op2
    NSInvocationOperation *op2 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(run2) object:nil];
    
    // 4.调用start
    [op2 start];

    // run方法
    - (void)run
    {
      // 打印当前线程
      NSLog(@"%@", [NSThread currentThread]);
    }

    // run2方法
    - (void)run2
    {
      // 打印当前线程
      NSLog(@"%@", [NSThread currentThread]);
    }

 // 打印结果
2015-09-22 23:44:10.203 NSOperation基本使用[1955:72948] <NSThread: 0x7fbc63c28690>{number = 1, name = main}
2015-09-22 23:44:10.204 NSOperation基本使用[1955:72948] <NSThread: 0x7fbc63c28690>{number = 1, name = main}

从打印结果可知,并没有开启新的线程,都是在主线程中执行

注意

第二种:NSBlockOperation的使用

    // 1. 封装任务
    NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{
        
         // 打印当前线程
        NSLog(@"1---%@", [NSThread currentThread]);
        
    }];
    
    // 2.追加其它任务
    [op1 addExecutionBlock:^{

        // 打印当前线程
        NSLog(@"2---%@", [NSThread currentThread]);
    }];
    [op1 addExecutionBlock:^{
        
        // 打印当前线程
        NSLog(@"3---%@", [NSThread currentThread]);
    }];
    
    // 3.启动任务
    [op1 start];
// 打印结果
2015-09-22 23:41:56.403 NSOperation基本使用[1925:71930] 2---<NSThread: 0x7fa868c01760>{number = 2, name = (null)}
2015-09-22 23:41:56.403 NSOperation基本使用[1925:71931] 3---<NSThread: 0x7fa868e7c7c0>{number = 3, name = (null)}
2015-09-22 23:41:56.403 NSOperation基本使用[1925:71822] 1---<NSThread: 0x7fa868f156b0>{number = 1, name = main}

注意: 在没有队列的情况下, 如果给BlockOperation追加其它任务, 那么其它任务会在子线程中执行,即只要NSBlockOperation封装的操作数 >1,就会异步执行操作

NSOperationQueue的基本使用

第1种:NSInvocationOperation添加到队列
只要是自己创建的队列, 就会在子线程中执行 而且默认就是并发执行 只要将任务添加到队列中, 队列会自动调用start

    // 1.创建队列
    NSOperationQueue *queue = [[NSOperationQueue alloc] init];

    // 2.创建任务
    NSInvocationOperation *op1 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(download1) object:nil];
    NSInvocationOperation *op2 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(download2) object:nil];
    
    // 3.添加任务到队列中
    [queue addOperation:op1];
    [queue addOperation:op2];

    // download1方法
    - (void)download1
    {
        // 打印当前线程
        NSLog(@"1 == %@", [NSThread currentThread]);
    }

    // download2方法
    - (void)download2
    {
         // 打印当前线程
        NSLog(@"2 == %@", [NSThread currentThread]);
    }
 // 打印结果
2015-09-23 00:15:41.422 NSOperationQueue基本使用[2193:86087] 1 == <NSThread: 0x7fceb86515e0>{number = 3, name = (null)}
2015-09-23 00:15:41.422 NSOperationQueue基本使用[2193:86086] 2 == <NSThread: 0x7fceb849b400>{number = 2, name = (null)}

第2种:NSBlockOperation添加到队列

    // 1.创建队列
    NSOperationQueue *queue = [[NSOperationQueue alloc] init];
    
    // 2.创建任务op1
    NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{

          // 打印当前线程
          NSLog(@"1 == %@", [NSThread currentThread]);
    }];
    
    // 3.创建任务op2
    NSBlockOperation *op2 = [NSBlockOperation blockOperationWithBlock:^{

         // 打印当前线程
        NSLog(@"2 == %@", [NSThread currentThread]);
    }];
    
    // 注意: 如果是使用block来封装任务, 那么有一种更简便的方法(快速添加任务的方法)
    // 只要利用队列调用addOperationWithBlock:方法, 系统内部会自动封装成一个NSBlockOperation然后再添加到队列中
    [queue addOperationWithBlock:^{

        // 打印当前线程
        NSLog(@"3 == %@", [NSThread currentThread]);
    }];
    
    // 4.添加任务到队列
    [queue addOperation:op1];
    [queue addOperation:op2];
// 打印结果
2015-09-23 00:24:41.488 NSOperationQueue基本使用[2258:89475] 2 == <NSThread: 0x7fc4c356b1b0>{number = 3, name = (null)}
2015-09-23 00:24:41.488 NSOperationQueue基本使用[2258:89474] 1 == <NSThread: 0x7fc4c356b230>{number = 4, name = (null)}
2015-09-23 00:24:41.488 NSOperationQueue基本使用[2258:89473] 3 == <NSThread: 0x7fc4c34167d0>{number = 2, name = (null)}

第3种:自定义任务添加到队列

自定义任务

#import <Foundation/Foundation.h>

@interface HQOperation : NSOperation

@end
#import "HQOperation.h"

@implementation HQOperation

/*
 只要将任务添加到队列中, 那么队列在执行自定义任务的时候
 就会自动调用main方法
 */
- (void)main
{
    NSLog(@"%s, %@", __func__, [NSThread currentThread]);
}

@end

创建并添加到队列

   // 1.创建队列
    NSOperationQueue *queue = [[NSOperationQueue alloc] init];

    // 2.创建任务
    // 自定义任务的好处: 提高代码的复用性
    HQOperation *op1 = [[HQOperation alloc] init];
    HQOperation *op2 = [[HQOperation alloc] init];
    
    // 3.添加任务到队列
    [queue addOperation:op1];
    [queue addOperation:op2];

    // 打印结果
    2015-09-23 00:34:24.369 NSOperationQueue基本使用[2369:93788] -[XMGOperation main], <NSThread: 0x7f9db06067e0>{number = 3, name = (null)}
    2015-09-23 00:34:24.369 NSOperationQueue基本使用[2369:93790] -[XMGOperation main], <NSThread: 0x7f9db04247a0>{number = 2, name = (null)}

3种方案小结

GCD中有哪些队列: 并发: 自己创建, 全局 串行: 自己创建, 主队列
NSOperationQueue: 主队列: mainQueue 自己创建: 会在子线程中执行

最大并发数

// 最大并发数的相关方法
- (NSInteger)maxConcurrentOperationCount;
- (void)setMaxConcurrentOperationCount:(NSInteger)count;

如何控制并行和串行 maxConcurrentOperationCount = -1 ; 并行(默认就是并行) maxConcurrentOperationCount = 1 ; 串行 maxConcurrentOperationCount = 0 ; 不会执行

队列的暂停和恢复以及取消

self.queue.suspended = YES;
self.queue.suspended = NO;
[self.queue cancelAllOperations];

操作依赖

 // 1.创建队列
    NSOperationQueue *queue = [[NSOperationQueue alloc] init];
    NSOperationQueue *queue2 = [[NSOperationQueue alloc] init];

    // 2.创建5个任务
    NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{
        
        // 打印当前线程
        NSLog(@"1-------%@", [NSThread currentThread]);
    }];
    
    NSBlockOperation *op2 = [NSBlockOperation blockOperationWithBlock:^{
        
        // 打印当前线程
        NSLog(@"2-------%@", [NSThread currentThread]);
    }];
    
    NSBlockOperation *op3 = [NSBlockOperation blockOperationWithBlock:^{
        
        // 打印当前线程
        NSLog(@"3-------%@", [NSThread currentThread]);
    }];
    
    NSBlockOperation *op4 = [NSBlockOperation blockOperationWithBlock:^{
        
        // 打印当前线程
        NSLog(@"4-------%@", [NSThread currentThread]);
        
        // 执行任务
        for (int i = 0; i < 5; i++) {
            NSLog(@"%i", i);
        }
    }];
    
    NSBlockOperation *op5 = [NSBlockOperation blockOperationWithBlock:^{
        
        // 打印当前线程
        NSLog(@"5-------%@", [NSThread currentThread]);
    }];
    
    
    // 3.添加依赖
    [op1 addDependency:op2];
    [op1 addDependency:op3];
    [op1 addDependency:op4];
    [op1 addDependency:op5];

    
    // 4.监听op4什么时候执行完毕
    op4.completionBlock = ^{
        NSLog(@"op4中所有的操作都执行完毕了");
    };
    
    // 5.添加任务到队列
    [queue addOperation:op1];
    [queue addOperation:op2];
    [queue2 addOperation:op3];
    [queue2 addOperation:op4];
    [queue addOperation:op5];
2015-09-23 01:08:56.270 NSOpreatinoQueue的其它常用方法[2675:107479] 3-------<NSThread: 0x7fc842d151f0>{number = 2, name = (null)}
2015-09-23 01:08:56.270 NSOpreatinoQueue的其它常用方法[2675:107480] 2-------<NSThread: 0x7fc842ea0840>{number = 5, name = (null)}
2015-09-23 01:08:56.270 NSOpreatinoQueue的其它常用方法[2675:107478] 5-------<NSThread: 0x7fc842f197c0>{number = 4, name = (null)}
2015-09-23 01:08:56.270 NSOpreatinoQueue的其它常用方法[2675:107477] 4-------<NSThread: 0x7fc842d15f20>{number = 3, name = (null)}
2015-09-23 01:08:56.271 NSOpreatinoQueue的其它常用方法[2675:107477] 0
2015-09-23 01:08:56.272 NSOpreatinoQueue的其它常用方法[2675:107477] 1
2015-09-23 01:08:56.272 NSOpreatinoQueue的其它常用方法[2675:107477] 2
2015-09-23 01:08:56.272 NSOpreatinoQueue的其它常用方法[2675:107477] 3
2015-09-23 01:08:56.272 NSOpreatinoQueue的其它常用方法[2675:107477] 4
2015-09-23 01:08:56.272 NSOpreatinoQueue的其它常用方法[2675:107478] op4中所有的操作都执行完毕了
2015-09-23 01:08:56.273 NSOpreatinoQueue的其它常用方法[2675:107478] 1-------<NSThread: 0x7fc842f197c0>{number = 4, name = (null)}

只有执行完其它4个任务和for循环之后才会执行op1任务

操作的监听

可以监听一个操作的执行完毕

- (void(^)(void))completionBlock;
- (void)setCompletionBlock:(void(^)(void))block;

线程间的通信

上一篇下一篇

猜你喜欢

热点阅读