Boost Linux线程第一课

#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'

猜你喜欢

转载自blog.51cto.com/fengyuzaitu/2459215