gpt4 book ai didi

c++ - 函数指针?

转载 作者:太空狗 更新时间:2023-10-29 21:47:21 25 4
gpt4 key购买 nike

说我有

class B{   //base class

}

class A : public B{ //derived class
}

我还有一个返回指向类 B 的指针的函数

B* returnB(){
B * object = new A; //pointer of base class allocate object of derived class
return object;
}

现在当我尝试创建一个指向函数 B* 的指针时,我得到一个错误

B* (*randomFunction)();
randomFunction = returnB;

Visual Studios 无法编译。

1   IntelliSense: a value of type "B*(MediaFactory::*)()" cannot be assigned to an entity of type "B*(*)()" c:\Users\...\mediafactory.cpp   35

最佳答案

您似乎试图将指向类 MediaFactory 的成员函数的指针分配给可以容纳非成员函数的变量。这些实体不兼容。使用 boost bind 或将函数指针变量更改为 B* (MediaFactory::*)() 类型。

关于c++ - 函数指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13413789/

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