码迷,mamicode.com
首页 > 编程语言 > 详细

c++多线程参数的传递

时间:2015-02-08 18:09:47      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>
#include <pthread.h>        //多线程相关操作头文件,可移植众多平台
using namespace std;

struct mypara
{      
    int para1;            //参数1       
    char *para2;        //参数2
    pthread_t wait;
};

void* thread1( void* args )  //本函数演示的是数据的传出
{
    mypara *my = (mypara *)args;
    srand(unsigned(time(0)));
    my->para1 = rand()%100;
    my->para2 = "";
    cout << "给结构体赋值结束"<< endl;
    return 0;
} 
void* thread2( void* args ) //本函数演示的是数据的传入
{
    mypara *str_in = (mypara *)args;
    cout << "线程2开始运行........................" <<endl;
    pthread_join(str_in->wait,NULL);    //需要等待thread1线程给struct 结构体赋值结束后才能运行
    cout << "线程1产生的随机数是:" << str_in->para1<< " "<< str_in->para2 <<endl;
    return 0;
} 
int main()
{
    pthread_t tid1,tid2; 
    mypara my_para;

    int ret = pthread_create( &tid1, NULL, thread1, (void *)&my_para );    
    //pthread_join(tid1,NULL);
    my_para.wait = tid1;
    pthread_create( &tid2, NULL, thread2, (void *)&my_para );
    system("pause");
    pthread_exit( NULL ); 
}

c++多线程参数的传递——通过结构体传递参数。(pthread多线程类库,不能在x64位上编译)

c++多线程参数的传递

标签:

原文地址:http://www.cnblogs.com/lwngreat/p/4280226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!