替朋友问的 有哪位大神可以告知 main.cpp#include "global.h"int Main(....){...}/**file_1.cpp**/#include "global.h"..../**file_2.cpp**/#include "global.h"...global.h中写有所有的全局变量及其初始化值 和函数声明 在编译的时候就会出错:first defined here multiple definition of 原因是因为在多次包含global.h时重复定义了变量和函数。你有什么解决方法?
2 回答
onemoo
TA贡献883条经验 获得超454个赞
头文件做了“重复包含保护”吗? 就是类似于这样的代码:
#ifndef XXX #define XXX ... #endif
或者这个 #pragma once
没有做重复包含保护的话,会出现重定义错误。
- 2 回答
- 0 关注
- 1280 浏览
添加回答
举报
0/150
提交
取消