日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

Cpp 11 / 线程库 / 可以做为线程的执行对象有哪些?

發布時間:2024/10/14 46 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Cpp 11 / 线程库 / 可以做为线程的执行对象有哪些? 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

答案

普通函數、仿函數、lambda 表達式

栗子

#include <iostream> #include <thread>class CTest { public:// 仿函數。void operator()(){std::cout << " () " << std::endl;return;} }; // 普通函數。 void func() {std::cout << " func " << std::endl;return; }int main() {CTest test;std::thread thread_1(func);std::thread thread_2(test);// lambda 表達式。auto other = []{std::cout << " other " << std::endl;return;};std::thread thread_3(other);thread_1.join();thread_2.join();thread_3.join();return 0; }

結果(不一定)

func ()other

?

(SAW:Game Over!)

總結

以上是生活随笔為你收集整理的Cpp 11 / 线程库 / 可以做为线程的执行对象有哪些?的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。