gpt4 book ai didi

c++0x 线程初始化

转载 作者:行者123 更新时间:2023-11-27 23:19:08 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Start thread with member function

如下所示,在 c++0x 中使用类方法定义线程构造函数时,无法解析 i get 函数。我做错了什么?

例如,如果我有

#include <thread>
using namespace std;
class A
{
public:
void doSomething();
A();
}

然后在 A 类的构造函数中,我想用 doSomething 启动一个线程。如果我像下面这样写,我会收到 doSomething Unresolved 错误。我什至这个->做某事。

 A::A()
{
thread t(doSomething);
}

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