更新, 忘记当时写的具体是啥了…
大概就是下面这个意思…
今天敲了这样一段代码 (简化版本)
#include <iostream>
#include <vector>
#include <thread>
using namespace std;
class t
{
public:
vector<shared_ptr<thread> > t1;
public:
t()
{
for (int i = 0; i < 3; i++)
{
t1.push_back(make_shared<thread>(Func, this)); //(1)
}
}
void Func()
{
cout << " hello world!" << endl;
}
};
int main()
{
t tt;
while (1){}
}
我在(1)的部分得到报错:
error: invalid use of non-static member function ‘void t::Func()’
t1.push_back(make_shared<thread>(t::Func, this)); //(1)
因为 c++ 禁止获取不合格或括号内的非静态成员函数的地址
这是因为只有在显示的使用&时,才会形成指向类成员的指针,并且后面的标识符是不在括号中的,即&qualified-id
如果是&(qualified-id)
是不能形成指向其的指针的.因为没有从非静态成员函数"到"指向函数成员的指针"的类型
所以应该是
&t::func
当然, 后面的 this
大家都是知道, 是因为类内成员隐含参数 this 指针的原因