首页 > 编程语言 > 详细

c++ 多线程 并发 id generator 产生器

时间:2021-05-25 12:25:09      阅读:24      评论:0      收藏:0      [点我收藏+]

用atomic

#include <atomic>
#include <iostream>

int getNextSerial()
{
  static std::atomic<uint64_t> i;
  return i++;
}

int main()
{
  for (int  a = 0; a < 34; ++a)
  {
    std::cout << getNextSerial() << std::endl;
  }
}

 

c++ 多线程 并发 id generator 产生器

原文:https://www.cnblogs.com/bigben0123/p/14807599.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!