一 概述

scoped_thread创建的线程在作用域范围外自动join,不需要手动写join函数,如下代码展示了使用scoped_thread创建线程,并使用bind关联线程函数和相关参数,向文件写入一些字符。

二 代码

#include <fstream>
#include <iterator>
#include <algorithm>
#include <boost/thread.hpp>
#include <boost/thread/scoped_thread.hpp>
void fill_file(char fill_char, std::size_t size, const char *file_path) {
std::ofstream ofs(file_path);
if (!ofs) {
return;
}
if (!ofs.is_open()) {
ofs.close();
return;
}
std::fill_n(std::ostreambuf_iterator<char>(ofs), size, fill_char);
ofs.close();
}
void example() {
boost::scoped_thread<boost::join_if_joinable>t(boost::bind(&fill_file, 'A', 1024, "./11.txt"));
}
int main() {
example();

return 0;
}

1.编译:

g++ -std=c++11 -g -o Test test.cpp -I ./ -I /opt/boost/boost_1_74_0 -L /opt/boost/boost_1_74_0/stage/lib -lboost_thread -pthread

2.profile:

export LD_LIBRARY_PATH=/usr/local/lib:/opt/boost/boost_1_74_0/stage/lib:$LD_LIBRARY_PATH
source profile