OC 线程操作1 - pthread

本文介绍在iOS开发环境中如何使用pthread库来创建线程。通过具体的代码示例展示了pthread_create函数的基本用法,包括如何定义线程执行的任务函数以及如何启动线程。

#import "ViewController.h"

#import <pthread.h> //1.需要包含这个头文件

 

@interface ViewController ()

 

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    //2.创建线程对象

    pthread_t p;

    

    //3.创建线程

    /*

     参数1 : pthread_t  _Nullable *restrict _Nonnull, 线程对象,传递地址

     参数2 : const pthread_attr_t *restrict _Nullable, 线程属性 , NULL

     参数3 : void * _Nullable (* _Nonnull)(void * _Nullable), 指向函数的指针

     参数4 : void *restrict _Nullable, 函数需要的参数

     */

    pthread_create(&p, NULL, task, NULL);

}

 

void *task(void *pama){

    return NULL;

}

 

@end

转载于:https://www.cnblogs.com/qingzZ/p/9212268.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值