C++11多線程(thread_local)


thread_local 關鍵字修飾的變量具有線程(thread)周期,這些變量在線程開始的時候被生成,在線程結束的時候被銷毀,並且每一個線程都擁有一個獨立的變量實例。

thread_local 一般用於需要保證線程安全的函數中。

需要注意的一點是,如果類的成員函數內定義了 thread_local 變量,則對於同一個線程內的該類的多個對象都會共享一個變量實例,並且只會在第一次執行這個成員函數時初始化這個變量實例,這一點是跟類的靜態成員變量類似的。

 

case 1:

class A
{
public:
    A() {}
    ~A() {}

    void test(const std::string &name)
    {
        thread_local int count = 0;
        ++count;
        std::cout << name.c_str() << ": " << count << std::endl;
    }
};

void func(const std::string &name)
{
    A a1;
    a1.test(name);
    a1.test(name);
    A a2;
    a2.test(name);
    a2.test(name);
}

int main(int argc, char* argv[])
{
    std::thread t1(func, "t1");
    std::thread t2(func, "t2");
    t1.join();
    t2.join();

    return 0;
}

輸出:

t1 : 1
t1 : 2
t1 : 3
t2 : 1
t2 : 2
t2 : 3
t2 : 4
t1 : 4

 

case 2:

class A
{
public:
    A() {}
    ~A() {}

    void test(const std::string &name)
    {
        static int count = 0;
        ++count;
        std::cout << name.c_str() << ": " << count << std::endl;
    }
};

void func(const std::string &name)
{
    A a1;
    a1.test(name);
    a1.test(name);
    A a2;
    a2.test(name);
    a2.test(name);
}

int main(int argc, char* argv[])
{
    std::thread t1(func, "t1");
    std::thread t2(func, "t2");
    t1.join();
    t2.join();

    return 0;
}

輸出:

t1: 1
t1: 3
t1: 4
t1: 5
t2: 2
t2: 6
t2: 7
t2: 8

 

轉載於:C++ 11 關鍵字:thread_local - 知乎 (zhihu.com)


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM