您好,登錄后才能下訂單哦!
#include <boost/thread/thread.hpp>
#include <iostream>
void ThreadFunc()
{
??????? std::cout<<"enter thread func success!"<<std::endl;
}
int main()
{
??????? boost::thread thrd1(&ThreadFunc);
??????? thrd1.join();
??????? return 0;
}
編譯指令????g++? test.cpp? -lboost_thread
注意:沒有鏈接boost_thread,出錯提示如下:
undefined reference to `boost::system::generic_category()'
undefined reference to `boost::system::generic_category()'
undefined reference to `boost::system::system_category()'
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'
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。