gpt4 book ai didi

c++ - 在 C++ 中使用 Boost Threads 的基本程序的问题

转载 作者:行者123 更新时间:2023-11-30 04:38:55 24 4
gpt4 key购买 nike

我有一个简单的程序,它在 C++ 中使用 boost 线程作为线程创建和执行。

#include<boost/thread/thread.hpp>
#include<iostream>


void hello()
{

std::cout<<"Hello, i am a thread"<<std::endl;

}

int main()
{
boost::thread th1(&hello);
th1.join();


}

编译器针对 th1.join() 行抛出错误。它说"
此行有多个标记

- undefined reference to 

`boost::thread::join()'

- undefined reference to

`boost::thread::~thread()'

最佳答案

这绝对是没有包含适当的 header /链接库的问题。

1) 您应该检查您的包含路径是否有适当的 boost 文件夹和 boost header 。2) 您应该使用适当的静态库 (xxx.lib) 文件构建您的应用程序。对于 boost::thread,该文件将被命名为类似于 libboost_thread_xxx.lib

关于c++ - 在 C++ 中使用 Boost Threads 的基本程序的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2836075/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com