转载
一.tm结构
struct tm
{
int tm_sec; //秒,正常范围0-59, 但允许至61
int tm_min; //分钟,0-59
int tm_hour; //小时, 0-23
int tm_mday; //日,即一个月中的第几天,1-31
int tm_mon; //月, 从一月算起,0-11/ 1+p->tm_mon;
int tm_year; //年, 从1900至今已经多少年/ 1900+ p->tm_year
int tm_wday; //星期,一周中的第几天, 从星期日算起,0-6
int tm_yday; //从今年1月1日到目前的天数,范围0-365
int tm_isdst; //日光节约时间的旗标
};
1
2
3
4
5
6
7
8
9
10
11
12
二.年月日时分秒与秒数互相转换
#include "stdafx.h"
#include <time.h>
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
//已知当前时间2021-3-12 11:52:38
//转换为秒
struct tm time;
time.tm_year = 2021 - 1900;//tm中的年份比实际年份小1900,需要减掉
time.tm_mon = 3 - 1;//tm中的月份从0开始,需要减1
time.tm_mday = 12;
time.tm_hour = 11;
time.tm_min = 52;
time.tm_sec = 38;
time_t ltime_new = mktime(&time);
cout << "------------将2021-3-12 11:52:38转换为秒------------" << endl;
cout << ltime_new << endl;
cout << "------------将2021-3-12 11:52:38转换为秒------------" << endl;
cout << "\r\n" << endl;
//将秒数转换为年月日时分秒
struct tm newTime;
newTime = *localtime( <ime_new ); /* Convert to local time. */
cout << "------------------将秒数转换为时间------------------" << endl;
//星期,一周中的第几天, 从星期日算起,0-6
char week[10];
switch(newTime.tm_wday)
{
case 0:
sprintf_s(week, "%s", "星期日");
break;
case 1:
sprintf_s(week, "%s", "星期一");
break;
case 2:
sprintf_s(week, "%s", "星期二");
break;
case 3:
sprintf_s(week, "%s", "星期三");
break;
case 4:
sprintf_s(week, "%s", "星期四");
break;
case 5:
sprintf_s(week, "%s", "星期五");
break;
case 6:
sprintf_s(week, "%s", "星期六");
break;
default:
sprintf_s(week, "%s", "有星期八吗?");
break;
}
int nYDay = newTime.tm_yday + 1;//tm从今年1月1日到目前的天数,范围0-365,需加1
int nYear = newTime.tm_year + 1900;//tm中的年份比实际年份小1900,需加1900
int nMon = newTime.tm_mon + 1;//月, 从一月算起,范围0-11,需加1
int nMDay = newTime.tm_mday;//日
int nHour = newTime.tm_hour;//时
int nMin = newTime.tm_min;//分
int nSec = newTime.tm_sec;//秒
cout << "当前时间为:一年中的第" << nYDay << "天" << " " << week << " "
<< nYear << "-" << newTime.tm_mon+1 << "-" << newTime.tm_mday
<< " " << newTime.tm_hour << ":" << newTime.tm_min << ":" << newTime.tm_sec
<< endl;
cout << "------------------将秒数转换为时间------------------" << endl;
return 0;
}
三.运行结果
------------将2021-3-12 11:52:38转换为秒------------
1615521158
------------将2021-3-12 11:52:38转换为秒------------
------------------将秒数转换为时间------------------
当前时间为:一年中的第71天 星期五 2021-3-12 11:52:38
------------------将秒数转换为时间------------------
请按任意键继续. . .
————————————————
版权声明:本文为CSDN博主「whxj12」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/whxj12/article/details/112416207