作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的问题是关于将 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/
我是一名优秀的程序员,十分优秀!