VC中怎样读取系统当前时间

 SYSTEEMTIME   time;

 

 ::GetlocalTime(&time)

 

typedef struct _SYSTEMTIME {
  WORD
wYear;
  WORD
wMonth;
  WORD
wDayOfWeek;
  WORD
wDay;
  WORD
wHour;
  WORD
wMinute;
  WORD
wSecond;
  WORD
wMilliseconds;
} SYSTEMTIME

 

CTime t = CTime::GetCurrentTime();

CString  strTime = CTime::GetCurrentTime().Format("%Y-%m-%d-%a %H:%M:%S") ;

 

 

 

你可能感兴趣的:(VC中怎样读取系统当前时间)