C++简单日志类仅供参考上次上传的那个忘了fflush(hf);
简单C++类: void My_Log::Write_Log(const char *szFormat, ...) { FILE *hf = NULL; va_list ap; if(!szLogFile[0]) return; hf = fopen(szLogFile, "a"); if(!hf) return; va_start(ap, szFormat); vfprintf(hf, szFormat, ap); va_end(ap); fprintf(hf, "\n"); fflush(hf); fclose(hf); }
文件列表
My_Log.rar
(预估有个2文件)
My_Log
My_Log.cpp
646B
My_Log.h
252B
暂无评论