获取当前时间的方法
1.CTime
CTime currentTime = CTime::GetCurrentTime();
CString strYear, strMonth;
strYear.Format("%04d", currentTime.GetYear());
strMonth.Format("%04d-%02d", currentTime.GetYear(), currentTime.GetMonth());
2.time_t
time_t currentTime = time(NULL);
struct tm *local;
local=localtime(¤tTime);
CString strYear, strMonth;
strYear.Format("%04d", local->tm_year);
strMonth.Format("%04d-%02d", local->tm_year, local->int tm_mon);
再定义一个tm结构体
struct tm
{
int tm_sec;
获取当前时间的方法最先出现在Python成神之路。
共有 0 条评论