为了将“待办事项”项添加到我的代码中,我想在编译器输出中添加一条消息。
我希望它看起来像这样:
c:/temp/main.cpp(104): TODO - add code to implement this
为了利用Visual Studio构建输出功能通过双击导航到相应的行。
但是
__LINE__
宏似乎扩展为int
,不允许编写#pragma message( __FILE__ "("__LINE__"): ..." )
会有其他方法吗?
最佳答案
这是允许您单击输出 Pane 的一种:
(那里还有其他一些不错的技巧)
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!")
这将创建如下输出: