gpt4 book ai didi

c++ - 在 C++ 中,当我需要使用枚举时,如何避免#include 头文件?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:49:31 25 4
gpt4 key购买 nike

在我的 C++ 头文件中,我尝试使用前向声明 (class MyClass;) 而不是 #including 类头,正如许多 C++ 编码标准(谷歌 C++ 风格指南就是其中之一)所推荐的那样。

不幸的是,当我引入枚举时,我不能再做前向声明了。像这样:

//// myclass1.hpp ////

class MyClass1
{
enum MyEnum1
{
Enum_A, Enum_B, Enum_C
};
};

//// myclass2.hpp ////

// I want to avoid this
#include "myclass1.hpp"

// I'd prefer to do this (forward declaration)
class MyClass1;

class MyClass2
{
// This is o.k.: I only need to forward declare MyClass1
MyClass1* ptr;

// This forces me to #include, but I don't want to!
void func( MyClass1::MyEnum1 e );
};

到目前为止我能想到的最好的解决方案是用成员常量替换枚举:

//// myclass1.hpp  ////

MyClass1
{
static const int Enum_A;
static const int Enum_B;
static const int Enum_C;
};

//// myclass1.cpp ////

const int Enum_A = 1;
const int Enum_B = 2;
const int Enum_C = 3;

不过,在这种情况下,解决方案似乎比问题本身更糟糕。

我目前正在查看大型 C++ 软件设计 (Lakos) 和有效地使用遗留代码 (Feathers) 以寻找依赖关系破坏技术,但我还没有还没有找到好的解决方案。

最佳答案

这很难做好。或许将 enum 移至通用头文件是一个合理的解决方案?

编辑:我知道要避免包含头文件的问题,但没有办法(AFAIK)做到这一点。将枚举移动到单独的头文件至少可以最大限度地减少头文件中需要包含的内容。这肯定比问题中暗示的疯狂要好!

关于c++ - 在 C++ 中,当我需要使用枚举时,如何避免#include 头文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/681243/

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