gpt4 book ai didi

c++ - 多态性 : "A pointer to a bound function may only be used to call the function"

转载 作者:太空宇宙 更新时间:2023-11-04 14:02:26 38 4
gpt4 key购买 nike

我将我的代码分成多个文件,但这是我没有得到的一件事。

在 graphics.h 中:

...
class graphics {
public:
virtual void SizeMod(int w, int h);
...
}

在 graphics.cpp 中:

...
void SizeMod(int w, int h) {
//Code here.
}
...

在 main.cpp 中:

...
graphics g;
...
int main (int argc, char **argv) {
...
glutReshapeFunc(g.SizeMod);
...
}

错误:

error C3867: 'graphics::SizeMod': function call missing argument list; use &graphics::SizeMod to create a pointer to member

所以我这样做了:

...
graphics g;
...
int main (int argc, char **argv) {
...
glutReshapeFunc(&graphics::SizeMod);
...
}

它仍然给我一个错误(另一个错误)。有什么办法可以解决这个问题吗?

最佳答案

它不会以这种方式工作,因为 SizeMod 是一个非静态类成员方法,所以它需要调用 this。您必须将 SizeMod 设为静态。

关于c++ - 多态性 : "A pointer to a bound function may only be used to call the function",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18652267/

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