C++构建工程要点

it2024-11-23  16

关于 include方面 如果A类,B类都需要使用到共同的 tool.h中的函数 #ifndef TOOL_H #define TOOL_H int addNum(int num); #endif // !TOOL_H 增加一个base.h文件,把共用的头文件都放在base.h中

可以在B类的.h文件中引入 #include “base.h” 在A类的.h 文件中引入 #include “B.h” 在main.cpp中引入 #include “A.h” 就可以使用tool.h工具的内容

最新回复(0)