gpt4 book ai didi

C++的纯虚函数实现和头文件

转载 作者:可可西里 更新时间:2023-11-01 14:54:39 30 4
gpt4 key购买 nike

当有问题的类分为 *.h*.cpp 文件时,我在实现从某个抽象类继承的纯虚函数时遇到了一些麻烦。编译器(g++)告诉我派生类不能实例化,因为存在纯函数。

/** interface.h**/
namespace ns
{
class Interface {
public:
virtual void method()=0;
}
}

/** interface.cpp**/
namespace ns
{
//Interface::method()() //not implemented here
}

/** derived.h **/
namespace ns
{
class Derived : public Interface {
//note - see below
}
}

/** derived.cpp **/
namespace ns
{
void Derived::Interface::method() { /*doSomething*/ }
}

/** main.cpp **/
using namespace ns;
int main()
{
Interface* instance = new Derived; //compiler error
}

这是否意味着我必须声明 method() 两次 - 在接口(interface)的 *.hderived.h 中也?就没有别的办法了吗?

最佳答案

您必须在子类中声明您的方法。

// interface.hpp
class Interface {
public:
virtual void method()=0;
}

// derived.hpp
class Derived : public Interface {
public:
void method();
}

// derived.cpp
void
Derived::method()
{
// do something
}

关于C++的纯虚函数实现和头文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4675590/

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