C++11多線程(3)

創建、等待多個線程 創建多個線程時,最好使用vector與join()函數結合使用 #include <iostream> #include <thread> #include <vector> using namespace std; void print() { cout << "hello world" << endl; } int main() { vector<thread>
相關文章
相關標籤/搜索