美文网首页
iOS多线程 之 NSThread详解

iOS多线程 之 NSThread详解

作者: 有梦想的狼 | 来源:发表于2020-03-13 16:42 被阅读0次

    NSThread是对内核mach kernel中的mach thread的封装,所以,每一个NSThread的对象其实就是一个线程,我们创建一个NSThread对象也就意味着我们创建了一个新的线程
    初始化创建NSThread的方法有如下几种:

    /*
    使用target对象的selector作为线程的任务执行体,该selector方法最多可以接收一个参数,该参数即为argument
    需要手动调用start方法来启动线程执行任务
    */
    - (instancetype)initWithTarget:(id)target selector:(SEL)selector object:(nullable id)argument API_AVAILABLE(macos(10.5), ios(2.0), watchos(2.0), tvos(9.0));
    
    /*
    使用block作为线程的任务执行体
    需要手动调用start方法来启动线程执行任务
    */
    - (instancetype)initWithBlock:(void (^)(void))block API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0));
    
    /*
    类方法,返回值为void
    使用一个block作为线程的执行体,并直接启动线程
    */
    + (void)detachNewThreadWithBlock:(void (^)(void))block API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0));
    
    /*
    类方法,返回值为void
    使用target对象的selector作为线程的任务执行体,该selector方法最多接收一个参数,该参数即为argument
    */
    + (void)detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(nullable id)argument;
    

    NSThread的使用:

    • -(instancetype)initWithTarget:(id)target selector:(SEL)selector object:(nullable id)argument 的使用

      /*
      说明: 本文的栗子都是在单视图的工程中执行,防止主线程退出后,其他线程被退出,不方便实验。
      */
      
      //线程的任务执行体并接收一个参数arg
      - (void)firstThread:(id)arg
      {
          for (int i = 0; i < 10; I++)
          {
              NSLog(@"Task %@ %@", [NSThread currentThread], arg);
          }
          NSLog(@"Thread Task Complete");
      }
      
      - (void)viewWillAppear:(BOOL)animated
      {    
          [super viewWillAppear: YES];
        
          /*
          创建一个线程,线程任务执行体为firstThread:方法
          该方法可以接收参数@"Hello, World"
          */
          NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(firstThread:) object:@"Hello, World"];
          //设置线程的名字,方便查看
          [thread setName:@"firstThread"];
          //启动线程
          [thread start];    
      }
      
      - (void)viewDidAppear:(BOOL)animated
      {
          [super viewDidAppear: YES];
          NSLog("ViewDidAppear");
      }
      

      打印结果:该结果循环输出10次

      Task <NSThread: 0x1c446f780>{number = 4, name = firstThread} Hello, World
      

      上面输出了线程的名称,还输出了我们传入的参数,通过很简单的代码就可以创建一个新的线程来执行任务,在开发中尽量将耗时的操作放在其他线程中执行,只将更新UI的操作放在主线程中执行。

      一般情况下,通过上述方法创建的线程在执行完任务执行体后就会退出并销毁,可以在firstThread:方法的第二个NSLog方法viewDidAppear:方法的输出上打断点,然后运行程序查看线程信息,在第一个断点时即firstThread:方法的断点中,程序中线程信息如下图:

      image.png
      从上图可以看到,现在程序中有一个线程名为firstThread,该线程即为我们创建的NSThread对象,而com.apple.main-thread(serial)即为主线程的名称,其中serial是指明主线程是串行的,这个内容会在GCD中进行讲解,我们可以通过类方法[NSThread mainThread]来获取主线程。接下来继续执行到第二个断点,程序中线程信息如下图: image.png
      从上图可以看到,firstThread线程不见了,因为在执行完任务执行体后该线程就退出并被销毁了。通过上述,我们无法复用NSThread,尽管线程的创建相比进程更加轻量级,但创建一个线程远比创建一个普通对象要消耗资源,而主线程和接收事件处理的线程仍然存在,这正是因为RunLoop的作用,请参考RunLoop详解
    • 其他三个方法使用:

      //栗子2:
      /*
      通过传入block的方式创建一个线程,线程执行体即为block的内容
      但该方式创建线程无法传入参数
      */
      NSThread *thread = [[NSThread alloc] initWithBlock:^{
          for (int i = 0; i < 100; i++)
          {
              NSLog(@"Task %@", [NSThread currentThread]);
          }
      }];
      //设置线程名称
      [thread setName:@"firstThread"];
      //启动线程
      [thread start];
      
      //栗子3:
      /*
      通过类方法创建并自动启动一个线程
      该线程的执行体即为传入的block
      */
      [NSThread detachNewThreadWithBlock:^{
          for (int i = 0; i < 100; i++)
          {
              NSLog(@"Task %@", [NSThread currentThread]);
          }
      }];
      
      //栗子4:
      /*
      通过类方法创建并自动启动一个线程
      该线程的执行体为self的firstThread:方法,并传入相关参数
      */
      [NSThread detachNewThreadSelector:@selector(firstThread:) toTarget:self withObject:@"Hello, World!"];
      

      上述把所有NSThread的创建方法都讲解了一遍,实例方法和类方法的区别就在于,实例方法会返回NSThread对象,当需要启动线程时需要手动触发start方法,而类方法没有返回值,创建线程后立即启动该线程。这里说的启动线程start方法,仅仅是将线程的状态从新建转为就绪,何时执行该线程的任务需要系统自行调度。

    NSThread常用的属性和方法:

    /*
    类属性,用于获取当前线程
    如果是在主线程调用则返回主线程对象
    如果在其他线程调用则返回其他的当前线程
    什么线程调用,就返回什么线程
    */
    @property (class, readonly, strong) NSThread *currentThread;
    
    //类属性,用于返回主线程,不论在什么线程调用都返回主线程
    @property (class, readonly, strong) NSThread *mainThread;
    
    /*
    设置线程的优先级,范围为0-1的doule类型,数字越大优先级越高
    我们知道,系统在进行线程调度时,优先级越高被选中到执行状态的可能性越大
    但是我们不能仅仅依靠优先级来判断多线程的执行顺序,多线程的执行顺序无法预测
    */
    @property double threadPriority;
    
    //线程的名称,前面的栗子已经介绍过了
    @property (nullable, copy) NSString *name
    
    //判断线程是否正在执行
    @property (readonly, getter=isExecuting) BOOL executing;
    
    //判断线程是否结束
    @property (readonly, getter=isFinished) BOOL finished;
    
    //判断线程是否被取消
    @property (readonly, getter=isCancelled) BOOL cancelled;
    
    /*
    让线程睡眠,立即让出当前时间片,让出CPU资源,进入阻塞状态
    类方法,什么线程执行该方法,什么线程就会睡眠
    */
    + (void)sleepUntilDate:(NSDate *)date;
    
    //同上,这里传入时间
    + (void)sleepForTimeInterval:(NSTimeInterval)ti;
    
    //退出当前线程,什么线程执行,什么线程就退出
    + (void)exit;
    
    /*
    实例方法,取消线程
    调用该方法会设置cancelled属性为YES,但并不退出线程
    */
    - (void)cancel;
    

    使用:

    //按钮点击事件处理器
    - (void)btnClicked
    {
        //取消线程
        [self.thread cancel];
    }
    
    - (void)viewWillAppear:(BOOL)animated
    {    
         self.thread = [[NSThread alloc] initWithBlock:^{
            for (int i = 0; i < 100; i++)
            {
                //获取当前正在执行的线程,即self.thread
                NSThread *currentThread = [NSThread currentThread];
                //判断线程是否被取消
                if ([currentThread isCancelled])
                {
                    //如果被取消就退出当前正在执行的线程,即self.thread
                    [NSThread exit];
                }
                NSLog(@"Task %@", currentThread);
                //循环内,每次循环睡1s
                [NSThread sleepForTimeInterval:1];
            }
        }];
        [self.thread setName:@"firstThread"];
        //启动线程
        [self.thread start];    
    }
    

    上面的栗子也比较简单,在视图中加入了一个按钮,点击按钮就会让我们创建的线程执行退出方法,在viewWillAppear:方法中创建并启动了一个线程,这个线程每次循环都会判断当前线程是否被取消,如果取消就退出当前线程,接下来线程就会被销毁,每次循环执行完后都会让当前线程睡眠一秒,这里可能很多人都会有误区,让线程睡眠会使得线程进入阻塞状态,当睡眠时间到后就会从阻塞状态进入就绪状态,被系统线程调度为执行状态后才能继续执行,所以这里睡1s并不是说精准的1s后再继续执行,只是1s后从阻塞态进入就绪态,之后何时执行由系统调度决定。还需要说明的是cancel方法并不会让线程退出,仅仅是将cancelled属性置为YES,退出需要我们手动触发exit方法。

    所以执行上述代码后,每一秒多会输出一次,当我们点击按钮后该线程就会将cancelled属性置为YES,在线程下次执行时就会执行exit方法退出线程,退出线程会立即终止当前执行的任务,也就是说exit方法后的代码不会再执行了。

    退出线程有如下三种情况:

    • 任务执行体执行完成后正常退出
    • 任务执行体执行过程中发生异常也会导致当前线程退出
    • 执行NSThread类的exit方法退出当前线程

    下载图片的例子:

    - (void)viewWillAppear:(BOOL)animated
    {
        //创建一个线程用来下载图片    
        NSThread *thread = [[NSThread alloc] initWithBlock:^{
            UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1508398116220&di=ba2b7c9bf32d0ecef49de4fb19741edb&imgtype=0&src=http%3A%2F%2Fwscont2.apps.microsoft.com%2Fwinstore%2F1x%2Fea9a3c59-bb26-4086-b823-4a4869ffd9f2%2FScreenshot.398115.100000.jpg"]]];
            //图片下载完成之后使用主线程来执行更新UI的操作
            [self performSelectorOnMainThread:@selector(updateImage:) withObject:image waitUntilDone:NO];
        }];
        //启动线程
        [thread start];    
    }
    
    //主线程执行当前更新UI的方法
    - (void)updateImage:(UIImage*)image
    {
        self.imageView.image = image;
    }
    

    NSThread线程锁,同步锁

    当多条线程同时访问同一块资源时,是需要用到线程锁同步锁

    举例:银行取钱

    //定义一个Account类
    @interface Account: NSObject
    //账号
    @property (nonatomic, strong) NSString *accountNumber;
    //余额
    @property (nonatomic, assign) double balance;
    //取钱操作
    - (void)draw:(id)money;
    
    @end
    
    @implementation Account
    
    @synthesize accountNumber = _accountNumber;
    @synthesize balance = _balance;
    
    - (void)draw:(id)money
    {
        double drawMoney = [money doubleValue];
        //判断余额是否足够
        if (self.balance >= drawMoney)
        {
            //当前线程睡1毫秒
            //[NSThread sleepForTimeInterval:0.001];
            self.balance -= drawMoney;
            NSLog(@"%@ draw money %lf balance left %lf", [[NSThread currentThread] name], drawMoney, self.balance);
        }
        else
        {
            //余额不足,提示
            NSLog(@"%@ Balance Not Enouth", [[NSThread currentThread] name]);
        }
    }
    
    @end
    
    //ViewController.m
    - (void)viewWillAppear:(BOOL)animated
    {    
        Account *account = [[Account alloc] init];
        account.accountNumber = @"1603121434";
        account.balance = 1500.0;
        
        NSThread *thread1 = [[NSThread alloc] initWithTarget:account selector:@selector(draw:) object:@(1000)];
        [thread1 setName:@"Thread1"];
        
        NSThread *thread2 = [[NSThread alloc] initWithTarget:account selector:@selector(draw:) object:@(1000)];
        [thread2 setName:@"Thread2"];
        
        [thread1 start];
        [thread2 start];    
    }
    

    上面这个栗子很简单,定义了一个Account类表示银行账户,然后定义了取钱的操作,在draw:方法里,注释了[NSThread sleepForTimeInterval:0.001];代码,然后在视图中创建了两个线程,都去取钱,运行上述程序我们发现线程1取到钱了,线程2提示余额不足,但这个结果不一定正确,我们提到过,多线程的执行顺序是无法预测的,哪怕线程2的优先级比线程1低,也有可能线程2先执行,所以我们把注释的一行去掉注释,来模拟第一个线程进入到取钱的判断条件体以后被系统线程调度切换,此时的输出结果为:

    Thread1 draw money 1000.000000 balance left 500.000000
    Thread2 draw money 1000.000000 balance left -500.000000
    

    这就是竞争条件,这里不再赘述什么是竞争条件,线程1进入判断体后还没有进行取钱的操作就被切换到就绪态,系统切换线程2执行,由于线程1还没有进行取钱操作,所以余额是满足要求的,线程2也进入了判断体,这样两个线程都可以取到钱。

    解决竞争条件的方法很多,比如锁机制同步代码块,接下来分别举两个栗子:

    //栗子2:
    - (void)draw:(id)money
    {
        @synchronized (self) {
            double drawMoney = [money doubleValue];
            
            if (self.balance >= drawMoney)
            {
                [NSThread sleepForTimeInterval:0.001];
                self.balance -= drawMoney;
                NSLog(@"%@ draw money %lf balance left %lf", [[NSThread currentThread] name], drawMoney, self.balance);
            }
            else
            {
                NSLog(@"%@ Balance Not Enouth", [[NSThread currentThread] name]);
            }
        }
    }
    
    //栗子3:
    - (void)draw:(id)money
    {
        /*
        self.lock在ViewController的初始化函数中进行初始化操作
        self.lock = [[NSLock alloc] init];
        */
        [self.lock lock];
        double drawMoney = [money doubleValue];
        
        if (self.balance >= drawMoney)
        {
            [NSThread sleepForTimeInterval:0.001];
            self.balance -= drawMoney;
            NSLog(@"%@ draw money %lf balance left %lf", [[NSThread currentThread] name], drawMoney, self.balance);
        }
        else
        {
            NSLog(@"%@ Balance Not Enouth", [[NSThread currentThread] name]);
        }
        [self.lock unlock];
    }
    

    在栗子2中,我们对draw:方法添加了一个同步代码块,使用@synchronized包围的代码即为同步代码块,同步代码块需要一个监听器,我们使用account对象本身作为监听器,因为是account对象产生的竞争条件,当执行同步代码块时需要先获取监听器,如果获取不到则线程会被阻塞,当同步代码块执行完成则释放监听器,与java的synchronized同步代码块一样。

    栗子3,我们使用锁机制,创建了一个NSLock类的锁对象,lock方法用于获取锁,如果锁被其他对象占用则线程被阻塞,unlock方法用于释放锁,以便其他线程加锁。

    线程的调度对于开发者来说是透明的,我们不能也无法预测线程执行的顺序,但有时我们需要线程按照一定条件来执行,这时就需要线程间进行通信,NSCondition就提供了线程间通信的方法,查看一下NSCondition的声明文件:

    NS_CLASS_AVAILABLE(10_5, 2_0)
    @interface NSCondition : NSObject <NSLocking> {
    @private
        void *_priv;
    }
    
    /*
    调用NSCondition对象wait方法的线程会阻塞,直到其他线程调用该对象的signal方法或broadcast方法来唤醒
    唤醒后该线程从阻塞态改为就绪态,交由系统进行线程调度
    执行wait方法时内部会自动执行unlock方法释放锁,并阻塞线程
    */
    - (void)wait;
    
    //同上,只是该方法是在limit到达时唤醒线程
    - (BOOL)waitUntilDate:(NSDate *)limit;
    
    /*
    唤醒在当前NSCondition对象上阻塞的一个线程
    如果在该对象上wait的有多个线程则随机挑选一个,被挑选的线程则从阻塞态进入就绪态
    */
    - (void)signal;
    
    /*
    同上,该方法会唤醒在当前NSCondition对象上阻塞的所有线程
    */
    - (void)broadcast;
    
    @property (nullable, copy) NSString *name API_AVAILABLE(macos(10.5), ios(2.0), watchos(2.0), tvos(9.0));
    
    @end
    
    NS_ASSUME_NONNULL_END
    

    NSCondition实现了NSLocking协议,所以NSCondition同样具有锁的功能,与NSLock一样可以获取锁与释放锁的操作。了解了NSCondition基本方法,就可以实现生产者消费者问题了:

    @interface Account: NSObject
    
    @property (nonatomic, strong) NSString *accountNumber;
    @property (nonatomic, assign) double balance;
    @property (nonatomic, strong) NSCondition *condition;
    @property (nonatomic, assign) BOOL haveMoney;
    
    - (void)deposite:(id)money;
    - (void)draw:(id)money;
    
    @end
    
    @implementation Account
    
    @synthesize accountNumber = _accountNumber;
    @synthesize balance = _balance;
    @synthesize condition = _condition;
    @synthesize haveMoney = _haveMoney;
    
    //NSCondition的getter,用于创建NSCondition对象
    - (NSCondition*)condition
    {
        if (_condition == nil)
        {
            _condition = [[NSCondition alloc] init];
        }
        return _condition;
    }
    
    - (void)draw:(id)money
    {
        //设置消费者取钱20次
        int count = 0;
        while (count < 20)
        {
            //首先使用condition上锁,如果其他线程已经上锁则阻塞
            [self.condition lock];
            //判断是否有钱
            if (self.haveMoney)
            {
                //有钱则进行取钱的操作,并设置haveMoney为NO
                self.balance -= [money doubleValue];
                self.haveMoney = NO;
                count += 1;
                NSLog(@"%@ draw money %lf %lf", [[NSThread currentThread] name], [money doubleValue], self.balance);
                //取钱操作完成后唤醒其他在次condition上等待的线程
                [self.condition broadcast];
            }
            else
            {
                //如果没有钱则在次condition上等待,并阻塞
                [self.condition wait];
                //如果阻塞的线程被唤醒后会继续执行代码
                NSLog(@"%@ wake up", [[NSThread currentThread] name]);
            }
            //释放锁
            [self.condition unlock];
        }
    }
    
    - (void)deposite:(id)money
    {
        //创建了三个取钱线程,每个取钱20次,则存钱60次
        int count = 0;
        while (count < 60)
        {   
            //上锁,如果其他线程上锁了则阻塞
            [self.condition lock];
            //判断如果没有钱则进行存钱操作
            if (!self.haveMoney)
            {
                //进行存钱操作,并设置haveMoney为YES
                self.balance += [money doubleValue];
                self.haveMoney = YES;
                count += 1;
                NSLog(@"Deposite money %lf %lf", [money doubleValue], self.balance);
                //唤醒其他所有在condition上等待的线程
                [self.condition broadcast];
            }
            else
            {
                //如果有钱则等待
                [self.condition wait];
                NSLog(@"Deposite Thread wake up");
            }
            //释放锁
            [self.condition unlock];
        }
    }
    
    @end
    
    - (void)viewWillAppear:(BOOL)animate
    {
        
        [super viewWillAppear:YES];
    
        Account *account = [[Account alloc] init];
        account.accountNumber = @"1603121434";
        account.balance = 0;
        //消费者线程1,每次取1000元
        NSThread *thread = [[NSThread alloc] initWithTarget:account selector:@selector(draw:) object:@(1000)];
        [thread setName:@"consumer1"];
        
        //消费者线程2,每次取1000元
        NSThread *thread2 = [[NSThread alloc] initWithTarget:account selector:@selector(draw:) object:@(1000)];
        [thread2 setName:@"consumer2"];
        
        //消费者线程3,每次取1000元
        NSThread *thread3 = [[NSThread alloc] initWithTarget:account selector:@selector(draw:) object:@(1000)];
        [thread3 setName:@"consumer3"];
        
        //生产者线程,每次存1000元
        NSThread *thread4 = [[NSThread alloc] initWithTarget:account selector:@selector(deposite:) object:@(1000)];
        [thread4 setName:@"productor"];
    
        [thread start];
        [thread2 start];
        [thread3 start];
        [thread4 start];
    }
    

    上面这个栗子也比较简单,关于NSCondition需要注意的就是它的wait方法,在执行wait方法前按照逻辑当然是要先获取锁,避免竞争条件,执行wait方法后会阻塞当前线程,直到其他线程调用这个condition来唤醒被阻塞的线程,被阻塞的线程唤醒后进入就绪态,当被调度执行后会重新获取锁并在wait方法下一行代码继续执行。还有一个要注意的地方就是是否有钱的haveMoney这个flag,这个flag存在的意义就是,当线程被唤醒后进入就绪态,接下来系统线程调度具体调度哪个线程来执行开发者是不知道的,也就是说我们无法预知接下来执行的是生产者还是消费者,为了避免错误,加一个flag用于判断。

    上面代码的写法是按照苹果官方文档的顺序写的,更多关于NSCondition可查阅官方文档:Apple NSCondition

    相关文章

      网友评论

          本文标题:iOS多线程 之 NSThread详解

          本文链接:https://www.haomeiwen.com/subject/vezejhtx.html