C++11 thread

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++11 thread相关的知识,希望对你有一定的参考价值。

 1 //这里使用c++的thread创建了5个线程,并支持传递多个参数
 2 void thread1(int aa,int bb)
 3 {
 4     cout << aa << bb << endl;
 5 }
 6 
 7 void testthread()
 8 {
 9     int ithreads[] = {1,2,3,4,5};
10     for(auto i: ithreads)
11     {
12         thread t1(thread1,i,i+1);
13         t1.join();
14     }
15 }

 

以上是关于C++11 thread的主要内容,如果未能解决你的问题,请参考以下文章

在 C++11 中通过引用 std::thread 传递对象

混合 C++11 std::thread 和 C 系统线程(即 pthreads)

NDK: ant 错误 [javah] Exception in thread "main" java.lang.NullPointerException 多种解决办法(代码片段

C++11线程使用

C++11多线程

多线程 Thread 线程同步 synchronized