标签: c++ pointers this
我有一个名为A的类,具有成员函数
A
bool A:: dummyfunc(AnotherObject crash) { //do something return true; }
在类B的构造函数中,dummyfunc通过类型为A的指针进行调用
B
dummyfunc
pointer->dummyfunc([this](bool param){ // some code });
那是什么?用括号和一些实现作为函数参数传递this?
this