#include
#include
#include
using namespace std;
#define NUM_THREADS 10
void* say_hello(void* args)
{
int i = *((int*)args);//对传入的参数进行强制类型转换,由无类型指针变为整形数指针,然后再读取;
cout << "hello in " << i << endl;
sleep(5);
}
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);
cout<< "dddddddd"<
}
1. 如果添加pthread_exit()在主线程,则主线程马上退出,不在执行主线程下面的程序,但是主线程中启动的其他线程继续执行,程序不会马上退出,等待子线程执行完毕退出。
2. 如果不添加,主线程不等待子线程执行完毕,程序直接退出,子线程可能没有执行完毕。