MFC时间CTime/SYSTEMTIME/COleDateTime/time_t

来源:互联网 发布:淘宝网修改快递单号 编辑:程序博客网 时间:2024/06/05 04:05

1.CTime类获取当前时间
CTime curTime;
curTime = CTime::GetCurrentTime();
CString strCurTime;                 
strCurTime.Format(_T("%04d/%02d/%02d %02d:%02d:%02d"), curTime.GetYear(), curTime.GetMonth(), curTime.GetDay(), curTime.GetHour(), curTime.GetMinute(), curTime.GetSecond());

 

2.SYSTEMTIME结构体获取当前时间

SYSTEMTIME curTime;
GetLocalTime(&curTime);
CString strCurTime;
strCurTime.Format(_T("%04d/%02d/%02d %02d:%02d:%02d"), curTime.wYear, curTime.wMonth, curTime.wDay, curTime.wHour, curTime.wMinute, curTime.wSecond);

 

3.COleDateTime/COleDateTimeSpan(时间加减)

COleDateTime today=COleDateTime::GetCurrentTime();//获取当前的时间
   
COleDateTimeSpan timespan( 0, 8, 0, 0 ); //(Day, Hour, Minute, Second);
COleDateTime time=today + timespan;     //Time比Today加了八小时
CString str;
str=time.Format("%H:%M %Y-%m-%d");
AfxMessageBox(str);

 

4.time_t(转换成秒)
SYSTEMTIME curTime;
GetLocalTime(&curTime);
struct tm tmTime;
tmTime.tm_year = curTime.wYear - 1900;
tmTime.tm_month = curTime.wMonth;
tmTime.tm_day = curTime.wDay;
tmTime.tm_hour = curTime.wHour;
tmTime.tm_minute = curTime.wMinute;
tmTime.tm_second = curTime.wSecond;
__time64_t curTime_64t = _mktime64(&tmTime); 

struct tm st;
st.tm_year = atoi(strTime.substr(0, 4).c_str())-1900;
st.tm_mon = atoi(strTime.substr(5, 2).c_str());
st.tm_mday = atoi(strTime.substr(8, 2).c_str());
st.tm_hour = atoi(strTime.substr(11, 2).c_str());
st.tm_min = atoi(strTime.substr(14, 2).c_str());
st.tm_sec = atoi(strTime.substr(17, 2).c_str());
tt = mktime(&st);         

 

 

 

 

原创粉丝点击