多线程编程:线程调用函数时传入参数
Posted 大峰子的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多线程编程:线程调用函数时传入参数相关的知识,希望对你有一定的参考价值。
重点:注意pthread_create() 第四个参数的使用
下面给出经典例程(来源:CSDN姜团长):
#include <iostream> #include <pthread.h> using namespace std; #define NUM_THREADS 10 void* say_hello(void* args) { int i = *((int*)args);//对传入的参数进行强制类型转换,由无类型指针变为整形数指针,然后再读取; cout << "hello in " << i << endl; } int main() { pthread_t tids[NUM_THREADS]; cout << "hello in main..." << endl; for(int i = 0; i < NUM_THREADS; ++i) { int ret = pthread_create(&tids[i], NULL, say_hello, (void *)&i);//传入的时候必须强制转换为void* 类型,即无类型指针 cout << "Current pthread id =" << tids[i] << endl;//这里学会使用tids数组打印创建的进程id信息; if (ret != 0) { cout << "pthread_create error: error_code=" << ret << endl; } } pthread_exit(NULL); }
以上是关于多线程编程:线程调用函数时传入参数的主要内容,如果未能解决你的问题,请参考以下文章
Python爬虫编程思想(138):多线程和多进程爬虫--从Thread类继承