linux下编译c++程序遇到 error: ‘thread’ is not a member of ‘std’的错误
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
今天用c++写了一个socket网络编程,用 g++ client.c -o client 命令编译时出现“client.c:69:5: error: ‘thread’ is not a member of ‘std’
std::thread(RMsg).detach();” 的错误,在网上搜索该错误原因,看到了一个外国论坛上老外给出的答案:" To get g++ into C++11(or C++0x) mode, you have to add the command-line parameter -std=c++0x on versions <=4.6 , nowadays you can also use -std=c++11 ."
按照此方法在g++ client.c -o client 命令后面加上-std=c++11,最终编译成功。
原来不加参数-std=c++11编译之所以会出现错误,是GCC/G++默认的-std(即C++语言标准)不是C++11,是C++98,要用C++11标准,需要显式开启,添加-std=c++11参数来显示开启。
C++98、C++11中的数字代表年份,前者为1998年制定的标准,后者则为2011年制定的标准,显然C++11较为新。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献7条内容
所有评论(0)