C++代码编写举例分析
短信预约 -IT技能 免费直播动态提醒
本篇内容主要讲解“C++代码编写举例分析”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C++代码编写举例分析”吧!
C++代码如下:
//log.h #ifndef _LOG_H_ #define _LOG_H_ #include <stdio.h> #include <time.h> #include <windows.h> #include <process.h> //使用短的原文件名 #define LOG_SHORT_SOURCE_FILE //使用日志 #define LOG_TO_FILE //定义标准错误输出设备 #define LOG_STD_DEV stderr //使用标准输出设备 //#define LOG_TO_STD //向调试窗口输出 //#define LOG_TO_DEBUG //输出messagebox //#define LOG_TO_MESSAGE_BOX //多线程用临界区 extern CRITICAL_SECTION _g_LogMutex; //全局日志文件名 extern char _g_LogFileName[MAX_PATH]; extern void InitLog(); //>初始化日志 extern void DestroyLog();//>清除日志 extern BOOL Log(const char* class="lazy" data-src, int line, const char* description);//>新增日志 //记录日志宏列表 #define LOG(arg) Log(__FILE__, __LINE__, (arg)) //多参数记录日志宏 #define LOG1(str, p1) { LOG_SPRINTF_BUFFER; sprintf(buffer, (str), (p1)); LOG(buffer); } #define LOG2(str, p1, p2) {LOG_SPRINTF_BUFFER; sprintf(buffer, (str), (p1), (p2)); LOG(buffer); } #define LOG3(str, p1, p2, p3) { LOG_SPRINTF_BUFFER; sprintf(buffer, (str), (p1), (p2), (p3)); LOG(buffer); } #define LOG4(str, p1, p2, p3, p4) { LOG_SPRINTF_BUFFER; sprintf(buffer, (str), (p1), (p2), (p3), (p4));LOG(buffer);} #define LOG5(str, p1, p2, p3, p4, p5) { LOG_SPRINTF_BUFFER; sprintf(buffer, (str), (p1), (p2), (p3), (p4), (p5)); LOG(buffer);} //记录windows API错误值 #define LOG_LAST_ERROR() { LOG_SPRINTF_BUFFER; DWORD eid = GetLastError();sprintf(buffer, "Last Error(%d):", eid); int len = strlen(buffer); \ FormatMessage( \ FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,\ NULL,\ eid, \ MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), \ buffer + len,\ DEFAULT_LOG_SPRINTF_BUFFER_SIZE-len-1, \ NULL \ ); \ LOG(buffer); \ }\ #if defined(__cplusplus) && defined(_INC_COMDEF) ///新增COM错误信息 inline BOOL Log(const char* class="lazy" data-src, int line, _com_error &e) { char buffer[DEFAULT_LOG_SPRINTF_BUFFER_SIZE]; sprintf(buffer, "_com_error\tCode = %x\tCode meaning = %s\tSource = %s\tDescription = %s", e.Error(), (LPCSTR)(_bstr_t)e.ErrorMessage(), (LPCSTR)(_bstr_t)e.Source(), (LPCSTR)(_bstr_t)e.Description()); return LOG_POS(class="lazy" data-src, line, buffer); } #endif ///新增VCL异常信息 #if defined(__cplusplus) && defined(__BORLANDC__) && defined(INC_VCL) inline BOOL Log(const char* class="lazy" data-src, int line, Exception *e) { return LOG_POS(class="lazy" data-src, line, e->Message.c_str()); } inline BOOL Log(const char* class="lazy" data-src, int line, Exception &e) { return LOG_POS(class="lazy" data-src, line, e.Message.c_str()); } #endif #endif _LOG_H_
到此,相信大家对“C++代码编写举例分析”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341