码迷,mamicode.com
首页 > 其他好文 > 详细

Boost thread 教程

时间:2014-05-27 03:06:45      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   http   a   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <boost/thread.hpp>
#include <iostream>
#include <stdio.h>
 
class SpecificWork {
private:
    int p_;
public:
    SpecificWork(int value) : p_(value) { }
 
    void operator()() {
        printf("Value is %d\n", p_);
    }
};
 
int main() {
    int i = 1;
    SpecificWork work(i);
    boost::thread worker(work);
 
    worker.join();
 
}

启动函数对象线程,注意, work(i) i可以是常数也可以是变量,但是假如写成

boost::thread worker(SpecificWork(1)); 就只能是常数了。

 

而对于函数来说, 就没有上述限制

1
2
3
4
5
6
7
8
9
10
11
12
void hello(int value) {
    printf("hello %d\n", value);
}
 
int main() {
    int i = 1;
    SpecificWork work(i);
    boost::thread worker(&hello, i);//ok
    boost::thread worker(&hello, 1);//ok
    worker.join();
 
}

 

另外,可以用 boost::bind 绑定函数

1
2
3
4
5
6
7
8
int main() {
    int i = 1;
    SpecificWork work(i);
    //boost::thread worker(&hello, i); //ok
    boost::thread worker(boost::bind(&hello, i)); //ok
    boost::thread worker(boost::bind(&hello, 1)); //ok
    worker.join();
}

 

bind 的用法还不是很熟,待填

 

Reference

[1] http://kelvinh.github.io/blog/2013/12/03/boost-bind-illustrated/

[2] http://blog.csdn.net/zddblog/article/details/19816309

Boost thread 教程,布布扣,bubuko.com

Boost thread 教程

标签:c   class   blog   code   http   a   

原文地址:http://www.cnblogs.com/zhouzhuo/p/3735666.html

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