尽管使用了 include Guards,但循环 #includes 的问题仍然存在。这是因为处理 #include 指令的预处理器的操作方式暴露了潜在的问题。
当预处理器遇到 #include 语句时,它会将其替换为指定文件的内容。例如,如果Physics.h包含GameObject.h,则预处理器会将Physics.h中的#include“GameObject.h”行替换为GameObject.h的内容。
但是,如果GameObject.h还包含包括Physics.h,创建了循环依赖。当预处理器在 GameObject.h 中遇到 #include "Physics.h" 行时,它会尝试将其替换为Physics.h的内容,这会导致无限循环,因为Physics.h还包含GameObject.h。
要进一步理解这一点,请考虑以下代码:
// Physics.h #ifndef PHYSICS_H #define PHYSICS_H #include "GameObject.h" // Guard is present #endif // GameObject.h #ifndef GAMEOBJECT_H #define GAMEOBJECT_H #include "Physics.h" // Guard is also present #endif
当预处理器处理此代码时,会产生以下:
// Physics.h (after preprocessing) #ifndef PHYSICS_H #define PHYSICS_H // (GameObject.h was copy-pasted here) // (GameObject.h was copy-pasted again) #endif // GameObject.h (after preprocessing) #ifndef GAMEOBJECT_H #define GAMEOBJECT_H // (Physics.h was copy-pasted here) // (Physics.h was copy-pasted again) #endif
如您所见,Physics.h 和 GameObject.h 现在都包含彼此的副本,从而导致循环依赖。
要解决此问题,需要避免循环 #include 并使用前向声明至关重要。前向声明声明类型的存在而不包含其定义,允许编译器继续而不需要类型的所有详细信息。
以上是为什么不包含 Guards 来防止循环 #include 问题?的详细内容。更多信息请关注PHP中文网其他相关文章!