安装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多线程代码内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复