概述
安装G++的指令:
1. 编辑源程序:sudo apt-get install g++
vim hello.cpp
- #include <iostream>
- #include <thread>
- void func(int x)
- {
- std::cout << x << " new threadn";
- }
- int main()
- {
- std::cout << "hello worldn";
- std::thread t(func, 8);
- t.join();
- std::cout << "end threadn";
- return 0;
- }
2. 编译程序
g++ -std=c++0x -pthread hello.cpp -o hello
3. 运行程序
./hello
注意编译的时候所带的参数,若不带-pthread,编译可以通过,运行会出现以下问题。
- terminate called after throwing an instance of 'std::system_error'
- what(): Operation not permitted
- Aborted (core dumped)
最后
以上就是生动小懒猪为你收集整理的G++下如何编译运行C++11多线程代码的全部内容,希望文章能够帮你解决G++下如何编译运行C++11多线程代码所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复