在我目前的项目中。很多我的.cpp
和.h
文件中都有很多包含,例如以下列方式声明的 6 或 7 个标头。
#ifndef A_Header
#include "a.h"
#endif
#ifndef B_Header
#include "b.h"
#endif
我想知道如果我将所有这些头文件(在项目中使用)包装在一个头文件中然后在每个源文件中声明该头文件是否有意义
#ifndef Wrapper_Header
#include "wrapper.h" /*This would contain a collection of all headers*/
#endif
这个计划有什么我没有预料到的建议和缺点吗?