C++变量重定义

发布于 2024-09-25 07:59:39 字数 286 浏览 9 评论 0原文

我有一个文件:

variableinclude.h

#ifndef _variableinclude_h_
#define _variableinclude_h_

AClass* variable1;
int* variable2;

#endif

但我将此文件包含在另外两个不同的文件中:

- atest1.h

- atest2.h

问题如下:变量重新定义。

如何避免这种情况???

I have a file:

variableinclude.h

#ifndef _variableinclude_h_
#define _variableinclude_h_

AClass* variable1;
int* variable2;

#endif

But I include this file in another two different ones:

- atest1.h

- atest2.h

The problem is the following: variable redefinition.

How to avoid that???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水溶 2024-10-02 07:59:39

编辑2:

欢迎来到ODR

编辑1:

在头文件中将变量设为extern。

extern AClass* variable1;   // assuming AClass is declared at this point.
extern int* variable2;

在任何 cpp 文件中定义它们一次且仅一次,例如在命名空间范围的 main.cpp 中。

AClass* variable1 = NULL;   // assuming AClass is declared at this point.
int* variable2 = NULL;

EDIT2:

Welcome to ODR

EDIT 1:

Make the variables extern in the header file.

extern AClass* variable1;   // assuming AClass is declared at this point.
extern int* variable2;

Define them once and only once in any cpp file e.g. in main.cpp at namespace scope.

AClass* variable1 = NULL;   // assuming AClass is declared at this point.
int* variable2 = NULL;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文