gpt4 book ai didi

c++ - 我可以在不使用 include 的情况下扩展头文件中的类吗?

转载 作者:行者123 更新时间:2023-11-30 01:51:20 24 4
gpt4 key购买 nike

我有这三个文件:

头文件中定义的抽象类 Person:

Person.h

class Person {
public:
char * name;
virtual char * days_work(int count, int price) = 0;
};

Miner 类扩展了头文件中定义的 Person:

Miner.h

class Miner: public Person {
public:
int gold_mined;
void days_work();
};

以及代码文件中Miner成员函数的定义:

矿工.cpp

#include "Miner.h"
#include "Person.h"

Miner::Miner(char * name) {
this->name = name;
this->gold_mined = 0;
}
Miner::~Miner() {}
void Miner::days_work() {
this->gold_mined += 10;
}

当我编译它(使用 gcc)时,我得到一个 invalid use of incomplete type ‘struct Person’ 错误。我可以通过将 #include "Person.h" 放在 Miner.h 的顶部来编译它,但是每个人都告诉我在其他头文件中包含头文件是不好的做法。在大多数情况下,我已经能够通过使用类的前向声明来避免它。 (例如 Miner.h 中的 class Person;),但这在这种情况下不起作用。

我能找到的关于该主题的每个问题都建议包括头文件。我一直看到像“快速和肮脏的修复”和“狗和鸟的解决方案”这样的短语,但我找不到更好的。

有没有一种方法可以在 header 中定义类扩展,而无需在 header 中包含 header ?

在这种情况下,您认为最佳做法是什么?

最佳答案

Everyone keeps telling me that including header files within other header files is bad practice

那么大家就错了!包含其他头文件的头文件绝对是正确和正常的做法。在这种情况下它是必需的。

正确的是,您不应该#include 您实际上并不需要的文件。有些人倾向于在不需要时在其他 header 中#include 很多 header (完全未使用或者“前向声明”可能就足够了,例如,如果 header 的唯一需要是声明一个指向在其中声明的类的指针它)。

所以,#include 你需要的,不要#include 你不需要的,“每个人”都应该开心。

关于c++ - 我可以在不使用 include 的情况下扩展头文件中的类吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26210599/

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