C++11之线程
设计到网络请求的地方一般都需要用到线程,C++11标准中增加了thread,下面是最简单的一个线程使用示例。
#include <iostream> #include <thread> void thread_task() { std::cout << "thread task" << std::endl; } int main() { std::thread t(thread_task); t.join();// pauses until t finishes return 0; }
编译命令:
g++ -std=c++11 -pthread thread.cpp
如果使用如下:
g++ -std=c++11 thread.cpp
会报错:
terminate called after throwing an instance of ‘std::system_error‘
what(): Operation not permitted
Aborted
所以切记,要加上-pthread。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。