C++11 thread时间:2023-03-09 19:24:02 //这里使用c++的thread创建了5个线程,并支持传递多个参数 void thread1(int aa,int bb) { cout << aa << bb << endl; } void testthread() { int ithreads[] = {,,,,}; for(auto i: ithreads) { thread t1(thread1,i,i+); t1.join(); } }