栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

C++11 关键字 thread

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C++11 关键字 thread

thread_local 线程本地变量

  1. 需要在可访问的作用域中声明
  2. 声明时可以初始化,但只有在线程中被使用时才实例化,随线程销毁时销毁
#include 
#include 
#include 
#include 
#include 

class Cls_A
{
    int data;
public:
    Cls_A(const int x):data{x}
    {
        std::cout << "Cls_A construct in thread:" << std::this_thread::get_id()<<" and data is "<< data << std::endl;
    }
    ~Cls_A()
    {
        std::cout << "Cls_A destruct in thread:" << std::this_thread::get_id() <
        ++data;
    }
    int get() const
    {
        return data;
    }
};

thread_local Cls_A x{21};

std::mutex mtx;

void func_0()
{
    std::lock_guard lock(mtx);
    x.add();
    std::cout << "thread:" << std::this_thread::get_id() << "'s x is " << x.get() << std::endl;
}

int main()
{
    std::cout << x.get() << std::endl;
    std::thread t1{func_0};
    std::thread t2{func_0};
    t1.join();
    t2.join();
    return 0;
}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/835453.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号