输出如:
2019-09-09 18:29:30:391 [test1.cpp-> myprintf-> L34] hello: 8898,即带了精确到毫秒级时间的printf,对调试时序逻辑的程序非常有用(如多线程时序同步),用法和普通的printf一样:
#include <sys/time.h>
#include <time.h>
#include <stdarg.h>
int myprintf(const char* fmt, ...)
{
static char tip[1024]={0};
static char buff[10*1024]={0};
int len=0;
va_list argptr;
va_start(argptr, fmt);
vsnprintf(buff, 10*1024, fmt, argptr);
va_end(argptr);
//提示 时间 YYYY-MM-DD hh:mm:ss:zzz, 若不需要,将其注释
{
struct timeval tv={0};
gettimeofday(&tv, 0);
struct tm *p = localtime((time_t *)&tv.tv_sec);
len=snprintf(tip,sizeof(tip), "%04d-%02d-%02d %02d:%02d:%02d:%03d ",
p->tm_year+1900, p->tm_mon+1, p->tm_mday,
p->tm_hour, p->tm_min, p->tm_sec,
tv.tv_usec/1000);
}
//提示 __FILE__, __func__, __LINE__ , 若不需要将其注释
len=snprintf(tip+len, sizeof(tip)-len, "[%s-> %s-> L%d] ", __FILE__, __func__, __LINE__);
return printf("%s\t%s", tip, buff);
}
如果Windows平台,将localtime函数变为GetLocalTime即可,参考GetLocalTime的使用:
//SYSTEMTIME结构体介绍
typedef struct _SYSTEMTIME
{
WORD wYear;//年
WORD wMonth;//月
WORD wDayOfWeek;//星期:0为星期日,1为星期一,2为星期二……
WORD wDay;//日
WORD wHour;//时
WORD wMinute;//分
WORD wSecond;//秒
WORD wMilliseconds;//毫秒
}SYSTEMTIME,*PSYSTEMTIME;
//使用 GetLocalTime 函数
SYSTEMTIME st;
CString strDate,strTime;
GetLocalTime(&st);
strDate.Format("%4d-%2d-%2d",st.wYear,st.wMonth,st.wDay);
strTime.Format("%2d:%2d:%2d:%d",st.wHour,st.wMinute,st.wSecond, st.wMilliseconds) ;
AfxMessageBox(strDate);
AfxMessageBox(strTime);