免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4715 | 回复: 8
打印 上一主题 下一主题

[C++] 请教boost 多线程编程,急...急...急!!! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-16 02:37 |只看该作者 |倒序浏览
1.boost::thread 库中是否可以产生带有参数的线程,比如现有一个函数:string func(string s),我该如何生成多个线程?且每个线程传入的参数不一样.
2.我用多个线程调用同一个函数,但我想每次调用的函数实现的功能都不一样?比如,线程1和线程2,分别读数据库中的第一条和第二条记录? 我原来想的是在该函数中放一个全局变量,但不知道该如何实现互斥.其代码如下:

#include <iostream>
#include <boost/thread/thread.hpp>
using namespace std;

static int RECNUM=0;//全局变量

void foo()
{
   ++RECNUM;
   cout << RECNUM<<"换行"<<endl;
}

main函数如下:
int main()
{
cout << "start output:"<<endl;
boost::thread thrd1(foo);
boost::thread thrd2(foo);
boost::thread thrd3(foo);
boost::thread thrd4(foo);
boost::thread thrd5(foo);
thrd1.join();
thrd2.join();
thrd3.join();
thrd4.join();
thrd5.join();
cout << "finish!"<<endl;
return 0;
}
这个程序的输出是:
start output:
1换行2345换行换行换行换行



finish!
请按任意键继续. . .


请问我该样做才能让程序输出:
start output:
1换行
2换行
3换行
4换行
5换行
finish

  期待你的帮助,不胜感激!!!!!

[ 本帖最后由 oitry_chen 于 2008-8-16 02:38 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-08-16 11:52 |只看该作者
http://www.diybl.com/course/3_pr ... /2007919/72043.html
你去看看这个网站吧,讲的是多线程,应该对你有帮助

论坛徽章:
0
3 [报告]
发表于 2008-08-16 12:56 |只看该作者
If you wish to construct an instance of boost::thread  with a function or callable object that requires arguments to be supplied, this can be done by passing additional arguments to the boost::thread  constructor:

void find_the_question(int the_answer);

boost::thread deep_thought_2(find_the_question,42);

论坛徽章:
0
4 [报告]
发表于 2008-08-16 13:21 |只看该作者
原帖由 草肃威 于 2008-8-16 12:56 发表
If you wish to construct an instance of boost::thread  with a function or callable object that requires arguments to be supplied, this can be done by passing additional arguments to the boost::th ...

乱盖吧,你知道那什么意思么

论坛徽章:
0
5 [报告]
发表于 2008-08-16 15:13 |只看该作者
boost线程库还没用过

论坛徽章:
0
6 [报告]
发表于 2008-08-16 15:43 |只看该作者
boost pthread

Boost[1]2[1].Thread.pdf

340.42 KB, 下载次数: 224

论坛徽章:
0
7 [报告]
发表于 2008-08-16 22:50 |只看该作者
谢谢...wangsheng0415 的资料,非常感谢

论坛徽章:
0
8 [报告]
发表于 2008-08-16 22:59 |只看该作者
没看过boost,但听说过boost是玩语法糖的,如果是这样的话,
你那个Thread的构造函数的参数,不应该像你所用的,是一个函数指针.
应该是一个对象才对.极有可能是下面这样的,

boost::Thread(  class  thread_call_back& );

class thread_call_back{
public:
       virtual   void* operator()();
}
之后你继承这个thread_call_back类,就可以了.  
因为我见过gtkmm(不要联想到我的名字,这个是http://gtkmm.org/) 里的回调函数和线程,
就是类似的办法实现的.

比如,
class T: public thread_call_back{
        int data;
public:
         T( int x){ data=x;}
         void* operator()(){ cout<<data<<endl;}
}

之后,用:
boost::Thread  a( T(1) );
boost::Thread  b( T(2) );
boost::Thread  c( T(3) );
这样就可以了.

[ 本帖最后由 gtkmm 于 2008-8-16 23:02 编辑 ]

论坛徽章:
0
9 [报告]
发表于 2008-08-29 22:52 |只看该作者
 谢谢各位,通过多线程传参数的问题我通过boost::bind解决了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP