对多个源文件使用一次 #define

发布于 2024-09-04 01:41:32 字数 67 浏览 3 评论 0原文

Visual C++ 中是否有一种方法可以在 cpp 文件中#define 某些内容,并在其他 cpp 文件中也定义它?

Is there a way in Visual C++ to #define something in a cpp file and have it defined in other cpp files as well?

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

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

发布评论

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

评论(4

与风相奔跑 2024-09-11 01:41:32

至少有两个选项:

  • 将定义放入头文件中,并将该头文件包含在需要定义的所有源文件中
  • 使用 /D 编译器选项 来定义宏(也可以在项目属性中设置C/C++ -> 预处理器定义)

There are at least two options:

  • Put the definition into a header file and include that header file in all the source files in which you need the definition
  • Use the /D compiler option to define the macro (this can also be set in the project properties under C/C++ -> Preprocessor -> Preprocessor Definitions)
岁吢 2024-09-11 01:41:32

定义.h:

#define foo bar

类.h:

#include "definitions.h"

definitions.h:

#define foo bar

class.h:

#include "definitions.h"
拒绝两难 2024-09-11 01:41:32

在头文件 (.h) 中 #define 并在所有 .cpp 文件中 #include 。

#define in a header (.h) file and #include that in all your .cpp files.

滥情稳全场 2024-09-11 01:41:32

有人已经提到了项目属性中的预处理器设置。

但您也可以仅选择您想要定义的几个 .cpp,然后右键单击这些文件并转到属性,然后:C/C++ ->预处理器->预处理器定义

它将仅定义这些 .cpp 文件的定义,而不是整个项目的定义。

Someone has mentioned the pre-processor setting in project properties already.

But you can also select only a few of the .cpp that you want the definition in and then right click on those and go to properties, then: C/C++ -> Preprocessor -> Preprocessor Definitions

It will define the defines for those .cpp files only and not your whole project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文