How to pass an argument to boost::thread?(如何将参数传递给 boost::thread?)
问题描述
thread_ = boost::thread( boost::function< void (void)>( boost::bind( &clientTCP::run , this ) ) );
run 是否可能有这样的参数:
is it possible that run has an argument like this :
void clientTCP::run(boost:function<void(std::string)> func);
如果是,我的 boost::thread 调用应该如何编写
and if yes how my boost::thread call should be written
谢谢.
推荐答案
下面的代码boost::bind( &clientTCP::run , this ) 定义了一个函数回调.它在当前实例(this)上调用函数run.使用 boost::bind,您可以执行以下操作:
The following code boost::bind( &clientTCP::run , this ) defines a function callback. It calls the function run on the current instance (this). With boost::bind you can do the following:
// Pass pMyParameter through to the run() function
boost::bind(&clientTCP::run, this, pMyParameter)
请参阅此处的文档和示例:
http://www.boost.org/doc/libs/1_46_1/doc/html/thread/thread_management.html
See the documentation and example here:
http://www.boost.org/doc/libs/1_46_1/doc/html/thread/thread_management.html
如果你想构造一个实例带有函数的 boost::thread 或需要的可调用对象要提供的参数,这可以是通过传递额外的参数来完成到 boost::thread 构造函数:
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);
希望有所帮助.
这篇关于如何将参数传递给 boost::thread?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将参数传递给 boost::thread?
基础教程推荐
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- c++ STL设置差异 2022-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
