gpt4 book ai didi

C++头文件和源文件设计实现

转载 作者:太空狗 更新时间:2023-10-29 20:38:05 24 4
gpt4 key购买 nike

关于 C++ 头文件和源文件布局的设计原则,我有一些疑问:我最近接手了一个项目,以前的程序员曾经有这个项目,这特别烦人,因为我在某处读到我们不应该在 .hpp 文件中包含 .cpp 文件(预处理器只会复制并粘贴 .hpp 文件)。 cpp 文件转换成.hpp)

Q1. Including a .cpp file in a .hpp file is bad? why?


由于上述问题,当我在 eclipse 中加载我的程序时,我面临许多“多重声明”错误,即使我在所有 .hpp 文件中添加了标题保护。

Q2. Should i be including the header guards in the .cpp files as well? I tried the later too but to no avail. Any suggestions on this?

Q3. If 2 or more of my .cpp files need the same header files to be used what is the best way to include all those header files? Should i create a new header file say h1.hpp, include all the header files I need in those 2 or more .cpp files and later include in this header file in those .cpp files(s)?

这是一种有效的方法吗?

最佳答案

Including a .cpp file in a .hpp file is bad? why?

在典型的代码设置中,是的。它没有任何用处,并可能导致“重复定义”错误。

更重要的是,它混合了实现接口(interface) 部分之间的分离。当要包含包含实现的文件时,通常会将其更改为 .inl(来自“inline”)扩展名。

Should i be including the header guards in the .cpp files as well?

没有。 header 保护防止一个翻译单元中的两个(或更多)其他 header 两次包含相同的 header 。由于每个翻译单元只有一个 .cpp 文件,因此不会出现此问题。

为了说明,示例包含如下所示:

  common.hpp
/ \
/ \
A.hpp B.hpp
\ /
\ /
file.cpp

在这种情况下,common.hpp 中的 header 保护 防止它出现两次 在为 file.cpp 引入的 TU 中.

If 2 or more of my .cpp files need the same header files to be used what is the best way to include all those header files?

一般来说,您不应该被长包含链吓到。它没有看起来那么可怕。话虽这么说,如果标题实际上形成树结构,则可以使用“聚合”标题(以使包含子集更容易,如 collections.hppcollections/vector.hpp + collections/list.hpp) 或包含库中的每个 header 。

关于C++头文件和源文件设计实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32855034/

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