为了将“待办事项”项目添加到我的代码中,我想在编译器输出中添加一条消息。
我希望它看起来像这样:
c:/temp/main.cpp(104): TODO - add code to implement this
为了利用 Visual Studio 构建输出功能通过双击导航到相应的行。
但是__LINE__
宏似乎扩展为一个int
,这不允许写作
#pragma message( __FILE__ "("__LINE__"): ..." )
会不会有别的办法?
为了将“待办事项”项目添加到我的代码中,我想在编译器输出中添加一条消息。
我希望它看起来像这样:
c:/temp/main.cpp(104): TODO - add code to implement this
为了利用 Visual Studio 构建输出功能通过双击导航到相应的行。
但是__LINE__
宏似乎扩展为一个int
,这不允许写作
#pragma message( __FILE__ "("__LINE__"): ..." )
会不会有别的办法?
这是一个允许您单击输出窗格的选项:
(那里还有其他一些不错的提示)
http://www.highprogrammer.com/alan/windev/visualstudio.html
// Statements like:
// #pragma message(Reminder "Fix this problem!")
// Which will cause messages like:
// C:\Source\Project\main.cpp(47): Reminder: Fix this problem!
// to show up during compiles. Note that you can NOT use the
// words "error" or "warning" in your reminders, since it will
// make the IDE think it should abort execution. You can double
// click on these messages and jump to the line in question.
#define Stringize( L ) #L
#define MakeString( M, L ) M(L)
#define $Line MakeString( Stringize, __LINE__ )
#define Reminder __FILE__ "(" $Line ") : Reminder: "
一旦定义,像这样使用:
#pragma message(Reminder "Fix this problem!")
这将创建如下输出:
C:\Source\Project\main.cpp(47):提醒:修复这个问题!
现在刚刚开始,它肯定比我使用的旧解决方案#error
:D
#define _STR(x) #x
#define STR(x) _STR(x)
#define TODO(x) __pragma(message("TODO: "_STR(x) " :: " __FILE__ "@" STR(__LINE__)))
您可以根据自己的喜好/根据需要对其进行修改。其用法示例:
//in code somewhere
TODO(Fix this);
控制台窗格中的输出:
1>TODO: Fix this :: c:\users\administrator\documents\visual studio 2008\projects\metatest\metatest\metatest.cpp@33
唯一的缺点是你不能跳到这一行(通过双击控制台窗格中的消息)使用__pragma
(但#pragma
无论如何测试似乎并非如此......)
#pragma
对于那些发现每次需要在代码中添加书签时都觉得输入指令很乏味的人来说,这是答案的附录:您可以通过启动宏来为您执行此操作来节省一些击键!#pragma
虽然一般来说,宏中不能有指令,但 MS C/C++ 编译器 2008 及更高版本确实支持一种特殊的供应商特定扩展,称为__pragma
可与宏一起使用的扩展。请参阅Pragma 指令和 __Pragma 关键字。
我每天使用类似于以下内容的东西:
#define STR2(x) #x
#define STR1(x) STR2(x)
#define LOC __FILE__ "("STR1(__LINE__)") : Warning Msg: "
#define WARNING_BUILDER(x) __FILE__ "("STR1(__LINE__)") : Warning Msg: " __FUNCTION__ " requires " #x
#define WREVIEW WARNING_BUILDER(review)
#define WUT WARNING_BUILDER(unit-testing)
#ifdef SPECIAL_WARNINGS
#ifdef SPECIAL_WARNINGS_REVIEW
#define MARK_FOR_REVIEW() do { \
__pragma(message( WREVIEW )) \
} while (0)
#else
#define MARK_FOR_REVIEW
#endif
#ifdef SPECIAL_WARNINGS_UNIT_TEST
#define MARK_FOR_UNIT_TEST() do { \
__pragma(message( WUT )) \
} while (0)
#else
#define MARK_FOR_UNIT_TEST
#endif
#endif
// uncomment/set in build-environment to enable special warnings
//#define SPECIAL_WARNINGS
#ifdef SPECIAL_WARNINGS
// uncomment/set in build-environment if you want only code review warnings
//#define SPECIAL_WARNINGS_REVIEW
// uncomment/set in build-environment if you want only unit-test warnings
//#define SPECIAL_WARNINGS_UNIT_TEST
#endif
int main()
{
MARK_FOR_REVIEW();
MARK_FOR_UNIT_TEST();
}
您可以轻松扩展它以满足您的需求并添加更多警告。拥有这样一个系统的好处是,您可以通过在构建设置中设置适当的宏来选择性地打开代码审查项目,而不必担心其他任何事情。
在 Visual C++ 上,你可以这样做
#pragma message(__FILE__ "(" _CRT_STRINGIZE(__LINE__) ")" ": warning: [blah]")
_CRT_STRINGIZE
通常已经在某些标头中定义,但如果不是,您可以定义它:
#define _CRT_STRINGIZE_(x) #x
#define _CRT_STRINGIZE(x) _CRT_STRINGIZE_(x)
这个允许在没有#pragma(我认为是微软特定的)的情况下使用它,当您单击它时,它会将您带到该行,因为它显示文件和行号就像常规错误/警告消息一样,因为其他消息似乎都没有去做这个。这曾经在没有 __pragma 的情况下工作,但较新版本的 msvc 需要它。我从 90 年代的某个时候开始使用它。我使用 Visual Studio 2013
#define MacroStr(x) #x
#define MacroStr2(x) MacroStr(x)
#define Message(desc) __pragma(message(__FILE__ "(" MacroStr2(__LINE__) ") :" #desc))
例子 :
Message("Need to add unit testing here")
输出:1> c:\source\include\mithrilsoftware.h(180) :"这里需要添加单元测试"
使用#
令牌。我在下面发布了一个来自 MSDN 的示例:
// collisions.h
#define __STR2__(x) #x
#define __STR1__(x) __STR2__(x)
#define __LOC__ __FILE__ "("__STR1__(__LINE__)") : Warning Msg: "
// collisions.cpp
#pragma message(__LOC__"Need to do 3D collision testing")