#import "ViewController.h"
#import "XMGOperation.h" @interface ViewController () @end @implementation ViewController #pragma mark ----------------------
#pragma mark Events
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
[self customWithQueue];
} #pragma mark ----------------------
#pragma mark Methods -(void)invocationOperationWithQueue
{
//1.创建操作,封装任务
/*
第一个参数:目标对象 self
第二个参数:调用方法的名称
第三个参数:前面方法需要接受的参数 nil
*/
NSInvocationOperation *op1 = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(download1) object:nil];
NSInvocationOperation *op2 = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(download2) object:nil];
NSInvocationOperation *op3 = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(download3) object:nil]; //2.创建队列
/*
GCD:
串行类型:create & 主队列
并发类型:create & 全局并发队列
NSOperation:1:本身不能进行封装任务,必须依靠其子类,NSInvocationOperation,NSBlockOperation或是自定义类,重写main方法来封装任务。这三个子类若没有指定队列,则默认任务是在当前队列中执行的
主队列: [NSOperationQueue mainQueue] 和GCD中的主队列一样,串行队列
非主队列: [[NSOperationQueue alloc]init] 非常特殊(同时具备并发和串行的功能)
//默认情况下,非主队列是并发队列:可通过设置最大并发数:为0:没有队列执行操作,1:主队列 大于1,并发队列 */
NSOperationQueue *queue = [[NSOperationQueue alloc]init]; //3.添加操作到队列中
[queue addOperation:op1]; //内部已经调用了[op1 start]
[queue addOperation:op2];
[queue addOperation:op3];
} -(void)blockOperationWithQueue
{
//1.创建操作
NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"1----%@",[NSThread currentThread]); }]; NSBlockOperation *op2 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"2----%@",[NSThread currentThread]);
}]; NSBlockOperation *op3 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"3----%@",[NSThread currentThread]);
}]; //追加任务:当某个操作的任务数量大于1时,默认会开启子线程并发执行,有可能是子线程有可能是主线程不确定
[op2 addExecutionBlock:^{
NSLog(@"4----%@",[NSThread currentThread]);
}]; [op2 addExecutionBlock:^{
NSLog(@"5----%@",[NSThread currentThread]);
}]; [op2 addExecutionBlock:^{
NSLog(@"6----%@",[NSThread currentThread]);
}]; //2.创建队列
NSOperationQueue *queue = [[NSOperationQueue alloc]init]; //3.添加操作到队列
[queue addOperation:op1];
[queue addOperation:op2];
[queue addOperation:op3]; //简便方法:addOperationWithBlock:直接封装任务添加到队列中
//1)创建操作,2)添加操作到队列中
[queue addOperationWithBlock:^{
NSLog(@"7----%@",[NSThread currentThread]);
}]; } -(void)customWithQueue
{
//1.封装操作
XMGOperation *op1 = [[XMGOperation alloc]init];
XMGOperation *op2 = [[XMGOperation alloc]init]; //2.创建队列
NSOperationQueue *queue = [[NSOperationQueue alloc]init]; //3.添加操作到队列
[queue addOperation:op1];
[queue addOperation:op2]; } -(void)download1
{
NSLog(@"%s----%@",__func__,[NSThread currentThread]);
} -(void)download2
{
NSLog(@"%s----%@",__func__,[NSThread currentThread]);
} -(void)download3
{
NSLog(@"%s----%@",__func__,[NSThread currentThread]);
} @end
#import "XMGOperation.h"

@implementation XMGOperation

//告知要执行的任务是什么
//1.有利于代码隐蔽
//2.复用性
-(void)main
{
NSLog(@"main---%@",[NSThread currentThread]);
}
@end
#import "ViewController.h"
#import "XMGOperation.h" @interface ViewController ()
/** 队列 */
@property (nonatomic, strong) NSOperationQueue *queue;
@end @implementation ViewController #pragma mark ----------------------
#pragma mark Events /**
* 1:先创建队列,设置最大并发数,来决定是串行还是并发,三种方式封装任务,将任务添加到队列(也可以快速实现封装任务到队列)2:任务的取消暂停
*
*/
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
[self test2];
} - (IBAction)startBtnClick:(id)sender
{
//1.创建队列
//默认是并发队列
self.queue = [[NSOperationQueue alloc]init]; //2.设置最大并发数量 maxConcurrentOperationCount
self.queue.maxConcurrentOperationCount = ; XMGOperation *op1 = [[XMGOperation alloc]init]; //4.添加到队列
[self.queue addOperation:op1];
} - (IBAction)suspendBtnClick:(id)sender
{
//暂停,是可以恢复
/*
队列中的任务也是有状态的:已经执行完毕的 | 正在执行 | 排队等待状态
*/
//不能暂停当前正在处于执行状态的任务
[self.queue setSuspended:YES];
} - (IBAction)goOnBtnClick:(id)sender
{
//继续执行
[self.queue setSuspended:NO];
} - (IBAction)cancelBtnClick:(id)sender
{
//取消,不可以恢复
//该方法内部调用了所有操作的cancel方法
[self.queue cancelAllOperations];
} -(void)test
{
//1.创建队列
//默认是并发队列
NSOperationQueue *queue = [[NSOperationQueue alloc]init]; //2.设置最大并发数量 maxConcurrentOperationCount
//同一时间最多有多少个任务可以执行
//串行执行任务!=只开一条线程 (线程同步)
// maxConcurrentOperationCount >1 那么就是并发队列
// maxConcurrentOperationCount == 1 那就是串行队列
// maxConcurrentOperationCount == 0 不会执行任务
// maxConcurrentOperationCount == -1 特殊意义 最大值 表示不受限制
queue.maxConcurrentOperationCount = ; //3.封装操作
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]);
}]; NSBlockOperation *op5 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"5----%@",[NSThread currentThread]);
}];
NSBlockOperation *op6 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"6----%@",[NSThread currentThread]);
}];
NSBlockOperation *op7 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"7----%@",[NSThread currentThread]);
}]; //4.添加到队列
[queue addOperation:op1];
[queue addOperation:op2];
[queue addOperation:op3];
[queue addOperation:op4];
[queue addOperation:op5];
[queue addOperation:op6];
[queue addOperation:op7];
} -(void)test2
{
//1.创建队列
//默认是并发队列
self.queue = [[NSOperationQueue alloc]init]; //2.设置最大并发数量 maxConcurrentOperationCount
//同一时间最多有多少个任务可以执行
//串行执行任务!=只开一条线程 (线程同步)
// maxConcurrentOperationCount >1 那么就是并发队列
// maxConcurrentOperationCount == 1 那就是串行队列
// maxConcurrentOperationCount == 0 不会执行任务
// maxConcurrentOperationCount == -1 特殊意义 最大值 表示不受限制
self.queue.maxConcurrentOperationCount = ; //3.封装操作
NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{
for (NSInteger i = ; i<; i++) {
NSLog(@"1-%zd---%@",i,[NSThread currentThread]);
}
}]; NSBlockOperation *op2 = [NSBlockOperation blockOperationWithBlock:^{
for (NSInteger i = ; i<; i++) {
NSLog(@"2-%zd---%@",i,[NSThread currentThread]);
}
}]; NSBlockOperation *op3 = [NSBlockOperation blockOperationWithBlock:^{
for (NSInteger i = ; i<; i++) {
NSLog(@"3-%zd---%@",i,[NSThread currentThread]);
}
}]; NSBlockOperation *op4 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"4----%@",[NSThread currentThread]);
}]; NSBlockOperation *op5 = [NSBlockOperation blockOperationWithBlock:^{
for (NSInteger i = ; i<; i++) {
NSLog(@"5-%zd---%@",i,[NSThread currentThread]);
}
}];
NSBlockOperation *op6 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"6----%@",[NSThread currentThread]);
}];
NSBlockOperation *op7 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"7----%@",[NSThread currentThread]);
}]; //4.添加到队列
[self.queue addOperation:op1];
[self.queue addOperation:op2];
[self.queue addOperation:op3];
[self.queue addOperation:op4];
[self.queue addOperation:op5];
[self.queue addOperation:op6];
[self.queue addOperation:op7];
} -(void)demo
{
} @end

- 2.2 NSOperationQueue基本使用

(1)NSOperation中的两种队列

01 主队列 通过mainQueue获得,凡是放到主队列中的任务都将在主线程执行

02 非主队列 直接alloc init出来的队列。非主队列同时具备了并发和串行的功能,通过设置最大并发数属性来控制任务是并发执行还是串行执行

(2)相关代码

```objc

//自定义NSOperation

-(void)customOperation

{

//1.创建队列

NSOperationQueue *queue = [[NSOperationQueue alloc]init];

//2.封装操作

//好处:1.信息隐蔽

//2.代码复用

XMGOperation *op1 = [[XMGOperation alloc]init];

XMGOperation *op2 = [[XMGOperation alloc]init];

//3.添加操作到队列中

[queue addOperation:op1];

[queue addOperation:op2];

}

//NSBlockOperation

- (void)block

{

//1.创建队列

NSOperationQueue *queue = [[NSOperationQueue alloc]init];

//2.封装操作

NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{

NSLog(@"1----%@",[NSThread currentThread]);

}];

NSBlockOperation *op2 = [NSBlockOperation blockOperationWithBlock:^{

NSLog(@"2----%@",[NSThread currentThread]);

}];

[op2 addExecutionBlock:^{

NSLog(@"3----%@",[NSThread currentThread]);

}];

[op2 addExecutionBlock:^{

NSLog(@"4----%@",[NSThread currentThread]);

}];

//3.添加操作到队列中

[queue addOperation:op1];

[queue addOperation:op2];

//补充:简便方法

[queue addOperationWithBlock:^{

NSLog(@"5----%@",[NSThread currentThread]);

}];

}

//NSInvocationOperation

- (void)invocation

{

/*

GCD中的队列:

串行队列:自己创建的,主队列

并发队列:自己创建的,全局并发队列

NSOperationQueue

主队列:[NSOperationQueue mainqueue];凡事放在主队列中的操作都在主线程中执行

非主队列:[[NSOperationQueue alloc]init],并发和串行,默认是并发执行的

*/

//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];

NSInvocationOperation *op3 = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(download3) object:nil];

//3.把封装好的操作添加到队列中

[queue addOperation:op1];//[op1 start]

[queue addOperation:op2];

[queue addOperation:op3];

}

```

- 2.3 NSOperation其它用法

(1)设置最大并发数【控制任务并发和串行】

```objc

//1.创建队列

NSOperationQueue *queue = [[NSOperationQueue alloc]init];

//2.设置最大并发数

//注意点:该属性需要在任务添加到队列中之前进行设置

//该属性控制队列是串行执行还是并发执行

//如果最大并发数等于1,那么该队列是串行的,如果大于1那么是并行的

//系统的最大并发数有个默认的值,为-1,如果该属性设置为0,那么不会执行任何任务

queue.maxConcurrentOperationCount = 2;

```

(2)暂停和恢复以及取消

```objc

//设置暂停和恢复

//suspended设置为YES表示暂停,suspended设置为NO表示恢复

//暂停表示不继续执行队列中的下一个任务,暂停操作是可以恢复的

if (self.queue.isSuspended) {

self.queue.suspended = NO;

}else

{

self.queue.suspended = YES;

}

//取消队列里面的所有操作

//取消之后,当前正在执行的操作的下一个操作将不再执行,而且永远都不在执行,就像后面的所有任务都从队列里面移除了一样

//取消操作是不可以恢复的

[self.queue cancelAllOperations];

---------自定义NSOperation取消操作--------------------------

-(void)main

{

//耗时操作1

for (int i = 0; i<1000; i++) {

NSLog(@"任务1-%d--%@",i,[NSThread currentThread]);

}

NSLog(@"+++++++++++++++++++++++++++++++++");

//苹果官方建议,每当执行完一次耗时操作之后,就查看一下当前队列是否为取消状态,如果是,那么就直接退出

//好处是可以提高程序的性能

if (self.isCancelled) {

return;

}

//耗时操作2

for (int i = 0; i<1000; i++) {

NSLog(@"任务1-%d--%@",i,[NSThread currentThread]);

}

NSLog(@"+++++++++++++++++++++++++++++++++");

}

```

ios开发多线程二:NSOperationQueue的基本使用的更多相关文章

  1. IOS开发 多线程编程 - NSOperationQueue

    一.简介 一个NSOperation对象可以通过调用start方法来执行任务,默认是同步执行的.也可以将NSOperation添加到一个NSOperationQueue(操作队列)中去执行,而且是异步 ...

  2. iOS开发多线程篇—NSOperation简单介绍

    iOS开发多线程篇—NSOperation简单介绍 一.NSOperation简介 1.简单说明 NSOperation的作⽤:配合使用NSOperation和NSOperationQueue也能实现 ...

  3. iOS开发多线程篇—NSOperation基本操作

    iOS开发多线程篇—NSOperation基本操作 一.并发数 (1)并发数:同时执⾏行的任务数.比如,同时开3个线程执行3个任务,并发数就是3 (2)最大并发数:同一时间最多只能执行的任务的个数. ...

  4. iOS开发多线程篇—自定义NSOperation

    iOS开发多线程篇—自定义NSOperation 一.实现一个简单的tableView显示效果 实现效果展示: 代码示例(使用以前在主控制器中进行业务处理的方式) 1.新建一个项目,让控制器继承自UI ...

  5. iOS开发多线程篇 09 —NSOperation简单介绍

    iOS开发多线程篇—NSOperation简单介绍 一.NSOperation简介 1.简单说明 NSOperation的作⽤:配合使用NSOperation和NSOperationQueue也能实现 ...

  6. iOS开发多线程篇 11 —自定义NSOperation

    iOS开发多线程篇—自定义NSOperation 一.实现一个简单的tableView显示效果 实现效果展示: 代码示例(使用以前在主控制器中进行业务处理的方式) 1.新建一个项目,让控制器继承自UI ...

  7. iOS开发多线程篇 10 —NSOperation基本操作

    iOS开发多线程篇—NSOperation基本操作 一.并发数 (1)并发数:同时执⾏行的任务数.比如,同时开3个线程执行3个任务,并发数就是3 (2)最大并发数:同一时间最多只能执行的任务的个数. ...

  8. iOS开发多线程篇—多线程简单介绍

    iOS开发多线程篇—多线程简单介绍 一.进程和线程 1.什么是进程 进程是指在系统中正在运行的一个应用程序 每个进程之间是独立的,每个进程均运行在其专用且受保护的内存空间内 比如同时打开QQ.Xcod ...

  9. iOS开发多线程篇—线程安全

    iOS开发多线程篇—线程安全 一.多线程的安全隐患 资源共享 1块资源可能会被多个线程共享,也就是多个线程可能会访问同一块资源 比如多个线程访问同一个对象.同一个变量.同一个文件 当多个线程访问同一块 ...

随机推荐

  1. Linux下进程终止过程

    不管是在什么系统中,当进程终止之后.系统都须要释放进程占有的资源. 否则.系统资源会被耗尽. 以下将具体说明Linux系统中,进程终止的过程. 进程终止方式 linux的进程终止方式有8种,当中5种是 ...

  2. 測试CPU支持指令集AVX,AVX2,SSE情况的代码【VS2010调试通过】

    完整代码例如以下所看到的 http://download.csdn.net/detail/vbskj/7723827 本人的測试结果 watermark/2/text/aHR0cDovL2Jsb2cu ...

  3. windows 2016 配置 VNC 服务

    windows 2016 配置 VNC 服务 下载windows版 https://www.realvnc.com/download/vnc/ 安装时勾选 vncserver 进入 "C:\ ...

  4. 界面实例--旋转的3d立方体

    好吧,这里直接编辑源码并不允许设置css和js……毕竟会有危险……那直接放代码吧 <!DOCTYPE html> <html> <head> <meta ch ...

  5. 设计模式六大原则(六): 开闭原则(Open Closed Principle)

    定义: 一个软件实体如类.模块和函数应该对扩展开放,对修改关闭. 问题由来: 在软件的生命周期内,因为变化.升级和维护等原因需要对软件原有代码进行修改时,可能会给旧代码中引入错误,也可能会使我们不得不 ...

  6. [React] Call setState with null to Avoid Triggering an Update in React 16

    Sometimes it’s desired to decide within an updater function if an update to re-render should be trig ...

  7. [React & Testing] Snapshot testings

    For example we have a React comonent: -- A toggle button, we want to test. When it si toggle on, the ...

  8. setting.system-全局属性的设定

    SystemProperties跟Settings.System 1 使用 SystemProperties.get如果属性名称以“ro.”开头,那么这个属性被视为只读属性.一旦设置,属性值不能改变. ...

  9. Android睡眠唤醒机制--Kernel态

    一.简介 Android系统中定义了几种低功耗状态:earlysuspend.suspend.hibernation.       1) earlysuspend: 是一种低功耗的状态,某些设备可以选 ...

  10. 2.Spring Boot 入门

    转自:https://blog.csdn.net/catoop/article/details/50501664