在使用VC++时,经常使用OutputDebugString往往Output窗口写一些调试信息,如果输出信息遵循某种格式,那么在Output窗口中点击相应输出文本就会跳到相应的代码行中。具体格式MSDN中有说,简单的说法,在输出文本的最前面是"文件名(行号):"的格式就可以了。一个例子,用在我的内存泄露检测代码中:


wsprintf(output_temp,"%s(%d): >>>>>>>>>>>>mem leaks! size=%d",
            memory_allocated[i].file, 
            memory_allocated[i].line,
            memory_allocated[i].size);
        OutputDebugString(output_temp);

标签: none

添加新评论