在VS 开发环境下,开发C/C++项目,增加以下宏定义:
#define chSTR2(x) #x
#define chSTR(x) chSTR2(x)
#define chMSG(desc) message(__FILE__ "(" chSTR(__LINE__) "):" #desc)
在代码中可以打印信息到编译输出窗口:
用法:
#progma chMsg(这里需要其他人提供的模块,但其它人模块还未完成,等其它人模块完成,再处理此处)
编译输出结果:
1>------ Build started: Project: GetAllIpS, Configuration: Debug Win32 ------
1>Compiling...
1>GetAllIps.cpp
1>f:\学习demo\netlearn\getallips\getallips.cpp(32):这里需要其他人提供的模块,但其它人模块还未完成,等其它人模块完成,再处理此处
1>Linking...
1>Embedding manifest...
1>Build log was saved at "file://f:\学习demo\netlearn\GetAllIps\Debug\BuildLog.htm"
1>GetAllIpS - 0 error(s), 0 warning(s)
========== Build: 1 succeeded, 0 failed, 5 up-to-date, 0 skipped ==========
在模块化多人开发过程中,可能在开发过程中需要别人提供的接口,而此时别人的接口未能提供,可以通过这个宏打印提示信息,非常适用。
延伸阅读
----话说C/C++语言中#的神奇作用