c++多线程并发编程视频

demo线程使用

#include <iostream>
#include <thread>
#include <future>
using namespace std;

void helloworld()
{
    cout << "hello world \n";
}

int main()
{
   
    //开启一个线程
    std::thread t(helloworld);
    std::cout << "hello world main thread\n";
   
    //线程的终结
    t.join();
   
    return 0;
}

 

posted @ 2020-10-10 14:53  tianli3151  阅读(323)  评论(0编辑  收藏  举报