MFC获取时间字符串

爷,独闯天下 提交于 2020-01-01 13:04:29

基本上有2种方式,一种是利用"time.h"文件中的系统函数;另一种是利用CTime类。

  1. 利用系统函数。
#include "time.h"

CString time_cstr;
SYSTEMTIME st;   //定义系统时间结构体的对象
GetLocalTime(&st); //调用GetLocalTime获得当前时间,并保存在结构体st中
time_cstr.Format(_T("%04d-%02d-%02d %02d:%02d:%02d:%3d"),
    st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
  1. 利用CTime类。
CString MyGetCurrenTime()
{
  CTime time = CTime::GetCurrentTime();
  CString curTime;
  curTime.Format(L"%04d-%02d-%02d %02d:%02d:%02d",
            	time.GetYear(),
    			time.GetMonth(),
    			time.GetDay(),
    			time.GetHour(),
    			time.GetMinute(),
    			time.GetSecond());
  return curTime;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!