pthread_t pthread[thread_num];
时间: 2023-12-22 17:28:45 浏览: 152
pthread
3星 · 编辑精心推荐
pthread_t pthread[thread_num];是一个声明了一个pthread_t类型的数组,数组名为pthread,数组大小为thread_num。这个数组可以用来存储多个线程的标识符。
范例:
```c
#include <pthread.h>
int thread_num = 5;
pthread_t pthread[thread_num];
int main() {
// 创建多个线程
for (int i = 0; i < thread_num; i++) {
pthread_create(&pthread[i], NULL, thread_function, NULL);
}
// 等待所有线程结束
for (int i = 0; i < thread_num; i++) {
pthread_join(pthread[i], NULL);
}
return 0;
}
```
阅读全文