如何查看 C++ 的内容宏?

发布于 2024-11-29 04:02:28 字数 102 浏览 0 评论 0原文

我有一个在编译前动态生成的宏(它应该包含内部版本号)。但是我认为它的生成方式存在一些错误,所以我想检查这个宏的内容。我怎样才能做到这一点?

我使用的是MSVC2008编译器。

I have a macro that is dynamically generated before compilation (it's supposed to contain the build number). However I think there's some error with the way it's generated so I would like to check the content of this macro. How can I do that?

I'm using the MSVC2008 compiler.

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

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

发布评论

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

评论(2

十年不长 2024-12-06 04:02:28

您可以使用 /p 选项和编写预处理器输出到文件。或者
您可以使用 /E 选项和编写预处理器输出到标准输出

You can use /p option and write preprocessor output to a file. Or
You can use /E option and write preprocessor output to stdout

っ〆星空下的拥抱 2024-12-06 04:02:28

您可以将项目或文件属性上的“预处理文件”选项设置为true。这将使您准确地看到预处理器发出的内容。

(位于配置属性 → C/C++ → 预处理器下。)

You can set the "Preprocess to a file" option on the project or file's properties to true. That will let you see exactly what the preprocessor emits.

(It's under Configuration Properties → C/C++ → Preprocessor.)

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