C++ 输出调试信息 类似MFC的TRACE等宏
生活随笔
收集整理的這篇文章主要介紹了
C++ 输出调试信息 类似MFC的TRACE等宏
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在MFC程序中有TRACE等一系列的宏可以輸出調試信息, 但是其他的地方不能用了, 下面這個小程序測試了怎么輸出調試信息,
// Test_ErrorCode.cpp : 定義控制臺應用程序的入口點。 //#include "stdafx.h" #include <Windows.h> #include <stdio.h> #include <stdarg.h> #include <ctype.h>void __cdecl odprintf(const char* fmt, ...) {char buf[4096], *p = buf;va_list args;va_start(args, fmt);p += vsnprintf_s(p, sizeof(buf), _TRUNCATE, fmt, args);va_end(args);while ( p > buf && isspace(p[-1]) )*--p = '\0';*p++ = '\r';*p++ = '\n';*p = '\0';OutputDebugStringA(buf); //OutputDebugString }int _tmain(int argc, _TCHAR* argv[]) {odprintf("Testing...");HANDLE hFile = CreateFile(_T("c://a.txt"), 0, 0, NULL, OPEN_EXISTING,0,NULL);odprintf("Retrieve last error code = %ld", ::GetLastError());return 0; }
// Test_ErrorCode.cpp : 定義控制臺應用程序的入口點。 //#include "stdafx.h" #include <Windows.h> #include <stdio.h> #include <stdarg.h> #include <ctype.h>void __cdecl odprintf(const char* fmt, ...) {char buf[4096], *p = buf;va_list args;va_start(args, fmt);p += vsnprintf_s(p, sizeof(buf), _TRUNCATE, fmt, args);va_end(args);while ( p > buf && isspace(p[-1]) )*--p = '\0';*p++ = '\r';*p++ = '\n';*p = '\0';OutputDebugStringA(buf); //OutputDebugString }int _tmain(int argc, _TCHAR* argv[]) {odprintf("Testing...");HANDLE hFile = CreateFile(_T("c://a.txt"), 0, 0, NULL, OPEN_EXISTING,0,NULL);odprintf("Retrieve last error code = %ld", ::GetLastError());return 0; }
總結
以上是生活随笔為你收集整理的C++ 输出调试信息 类似MFC的TRACE等宏的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 可热插拔快银轴:红魔电竞机械键盘全平台首
- 下一篇: win32程序测试键盘钩子