gpt4 book ai didi

c++ - 使用对象生命周期运行线程

转载 作者:行者123 更新时间:2023-11-30 00:49:01 24 4
gpt4 key购买 nike

在我的类 A 中,有一个与对象生命周期一样长的线程。现在我有一个 bool 成员变量,它在每个循环中都被检查,并且在析构函数中这个变量被设置为 false。

class A {
public:
A() : mRun(true) {
mThread = std::thread(&A::DoWork(), this);
}

~A() {
mRun = false;
}

private:
bool mRun;
std::thread mThread;

void DoWork() {
while (mRun) {
...
}
}
};

是否可以安全地使用while(true)?我读到关于线程的销毁,它们将被终止。

最佳答案

"is it possible to use while(true) safely?"

是的(假设 while(true) 实际上意味着 while (mRun) )。你需要做那个 mRun成员对于来自不同线程的并发读/写访问是安全的。最简单的方法是使用 std::atomic<> 值,如下:

class A {
public:
A() : mRun(true) {
mThread = std::thread(&A::DoWork(), this);
}

~A() {
mRun = false; // <<<< Signal the thread loop to stop
mThread.join(); // <<<< Wait for that thread to end
}

private:
std::atomic<bool> mRun; // Use a race condition safe data
// criterium to end that thread loop
std::thread mThread;

void DoWork() {
while (mRun == true) {
...
}
}
};

哪里mRun == true应该回退到 std::atomic::operator T() 功能。

关于c++ - 使用对象生命周期运行线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29976951/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com