我的问题是关于将成员函数从A类传递到B类的成员函数:
我尝试过这样的事情:
typedef void (moteurGraphique::* f)(Sprite);
f draw =&moteurGraphique::drawSprite;
defaultScene.boucle(draw);
moteurGraphique
是一个类,moteurGraphique::drawSprite
是一个成员函数,defaultScene
是B类的实例,而boucle
是B成员函数。在A的成员函数中调用的所有内容:
void moteurGraphique::drawMyThings()
我尝试了不同的方法来完成此操作,这对我来说似乎更合乎逻辑,但是却行不通!
我有:
Run-Time Check Failure #3 - The variable 'f' is being used without being initialized.
我认为我做错了什么,有人可以解释我的错误吗?
最佳答案
C++ 11方式:
using Function = std::function<void (Sprite)>;
void B::boucle(Function func);
...
A a;
B b;
b.boucle(std::bind(&A::drawSprite, &a, std::placeholders::_1));
关于c++ - 如何将一个成员函数传递给另一个成员函数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33098050/