C++并发(C++11)-01 最简单的多线程
#include <iostream> #include <thread> using namespace std; void hello() { cout << "hello" << endl; } int main() { thread t(hello); t.join(); return 0; }
以上代码中就包含两个线程:“主线程”、“t线程”。主线程入口函数为“main”而t线程入口函数为“hello”。t.join()保证了主线程会等待t线程及其相关线程。