iOS多线程之 pThread

2019-04-09  本文已影响0人  YANGXIXIYear

前面总结了多线程的基本概念,今天学习总结一下多线程的其中一种实现方案pThread

一、基本概念

pThread(POSIX threads)是一套纯C语言的API,需要程序员自己管理线程的生命周期,适用于多种操作系统,可跨平台,移植性强,但使用难度较大,iOS开发中几乎不使用。

二、pThread的使用方法

1、引入头文件#import <pthread.h>
2、创建一个线程:
#pragma mark - 创建线程
- (void)pThreadMethod {
    NSLog(@"主线程执行");
    // 1. 定义一个pThread
    pthread_t pthread;
    // 2. 创建线程 用runPthread方法执行任务
    pthread_create(&pthread, NULL, runPthread, NULL);
}

#pragma mark - 线程调用方法执行任务
void *runPthread(void *data) {
    NSLog(@"子线程执行");
    for (NSInteger index = 0; index < 10; index ++) {
        NSLog(@"%ld", index);
        // 延迟一秒
        sleep(1);
    }
    return NULL;
}

pthread_create(<#pthread_t _Nullable *restrict _Nonnull#>, <#const pthread_attr_t *restrict _Nullable#>, <#void * _Nullable (* _Nonnull)(void * _Nullable)#>, <#void *restrict _Nullable#>)参数说明:

3、运行结果:
2019-04-09 23:52:04.618053+0800 Test[1310:40633] 主线程执行
2019-04-09 23:52:04.618298+0800 Test[1310:40700] 子线程中执行
2019-04-09 23:52:04.618442+0800 Test[1310:40700] 0
2019-04-09 23:52:05.622067+0800 Test[1310:40700] 1
2019-04-09 23:52:06.627134+0800 Test[1310:40700] 2
2019-04-09 23:52:07.627593+0800 Test[1310:40700] 3
2019-04-09 23:52:08.633008+0800 Test[1310:40700] 4

· Test[1310:40633] 主线程执行中1310表示当前进程,40633表示主线程
· Test[1310:40700] 子线程执行中1310表示当前进程,40700表示子线程

三、PThread的其他方法

参考地址:

iOS开发 - 多线程实现方案之Pthread篇

上一篇 下一篇

猜你喜欢

热点阅读