// Test.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <direct.h>
#include <windows.h>
int _tmain(int argc, _TCHAR* argv[])
{
SYSTEMTIME st;
GetLocalTime( &st );
printf( "\n[%04d/%02d/%02d] [%02d:%02d:%02d:%03d][SEND]\t" , st.wYear , st.wMonth , st.wDay , st.wHour , st.wMinute , st.wSecond , st.wMilliseconds );
getchar();
return 0;
}
上述方法可以简单快速获取Windows系统时间,精确到ms。
运行结果