如何查看 C++ 的内容宏?
我有一个在编译前动态生成的宏(它应该包含内部版本号)。但是我认为它的生成方式存在一些错误,所以我想检查这个宏的内容。我怎样才能做到这一点?
我使用的是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
/p
选项和编写预处理器输出到文件。或者您可以使用
/E
选项和编写预处理器输出到标准输出You can use
/p
option and write preprocessor output to a file. OrYou can use
/E
option and write preprocessor output to stdout您可以将项目或文件属性上的“预处理文件”选项设置为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.)