#include <boost/thread/thread.hpp>
ios
#include <iostream>ide
void ThreadFunc()
{
std::cout<<"enter thread func success!"<<std::endl;
}it
int main()
{
boost::thread thrd1(&ThreadFunc);
thrd1.join();
return 0;
}io
編譯指令 g++ test.cpp -lboost_thread編譯
注意:沒有連接boost_thread,出錯提示以下:
table
undefined reference to `boost::system::generic_category()'
undefined reference to `boost::system::generic_category()'
undefined reference to `boost::system::system_category()'class
undefined reference to `boost::system::system_category()'
undefined reference to `vtable for boost::detail::thread_data_base'
undefined reference to `vtable for boost::detail::thread_data_base'
undefined reference to `boost::thread::start_thread_noexcept()'
undefined reference to `boost::thread::detach()'
undefined reference to `boost::thread::native_handle()'
undefined reference to `boost::thread::join_noexcept()'
undefined reference to `boost::detail::thread_data_base::~thread_data_base()'
undefined reference to `typeinfo for boost::detail::thread_data_base'thread