码迷,mamicode.com
首页 > 其他好文 > 详细

thread 学习

时间:2019-01-07 00:08:13      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:执行   _id   nbsp   thread   this   完成   join   std   bsp   

#include <thread>
#include <cstdio>
#include <utility>
#include <iostream>

void print(int x) {
    printf("%d\n", x);
}

int main() {
    std::thread t1(print, 1);
    std::thread t2(print, 2);

    // 获得线程ID
    std::thread::id t1_id = t1.get_id();
    std::thread::id t2_id = t2.get_id();
    std::cout << t1_id << " " << t2_id << std::endl;    
    
    /* 
     * 阻塞当前线程,直至 *this 所标识的线程完成其执行。
     * *this 所标识的线程的完成同步于从 join() 的成功返回。
     */
    t1.join();
    t2.join();
    return 0;
}

 

thread 学习

标签:执行   _id   nbsp   thread   this   完成   join   std   bsp   

原文地址:https://www.cnblogs.com/wuwangchuxin0924/p/10230851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!