学习于菜鸟教程、微软文档
C++标准库汇总没有提供所谓的日期类型。C++继承了C语言用于日期和时间操作的结构和函数。为了使用日期和时间相关的函数结构,需要在C++程序中引用头文件。
有四个与时间相关的类型:clock_t、time_t、size_t和tm。
类型clock_t、size_t和time_t能够把系统时间和日期表示为某种整数。
结构类型tm把日期和时间以C结构的形势保存,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
int tm_year; // 自 1900 年起的年数
int tm_wday; // 一周中的第几天,范围从 0 到 6,从星期日算起
int tm_yday; // 一年中的第几天,范围从 0 到 365,从 1 月 1 日算起
int tm_isdst; // 夏令时
}
下面是C/C++中关于日期和时间的重要函数。所有这些函数都是C/C++标准库的组成部分,可以在C++标准库中查看一下各个函数的细节。
time_t time(time_t * time); //下面实例1有应用
该函数返回系统当前时间,自1970年1月1日以来经过的秒数。如果系统没有时间,则返回1。
char *ctime(const time_t * time); //下面实例1有应用
返回一个表示当地时间的字符串指针,字符串形式day month year hours:minutes:seconds year\n\0。
struct tm *localtime(cosnt time_t *time);
该函数返回一个指向表示本地时间的tm结构的指针。
clock_t clock(void);
该函数返回程序执行起(一般是程序的开头),处理器时钟所使用的时间。如果时间不可用,则返回1。
char *asctime(const struct tm * time); //下面实例1有应用
该函数返回一个指向字符串的指针,字符串包括了time所指向结构中存储的信息,返回形式为:day month date hours:minutes:seconds year\n\0。
struct tm *gmtime(const time_t *time); //下面实例1有应用
该函数返回一个指向time的指针,time为tm结构,用协调世界时间时(UTC)也称为格林尼治标准时间(GMT)表示。
time_t mktime(struct tm *time);
该函数返回日历时间,相当于time所指向结构中存储的时间。
double difftime(time_t time2,time_t time1);
该函数返回time1和time2之间相差的秒数。
size_t strftime();
该函数可用于格式化日期和时间为指定的格式
如果使用上述函数,vs中出现C4996错误,是安全问题请见于文章[CRT]、微软
#include "pch.h"
#include
#include
#define SIZE 26
using namespace std;
int main()
{
errno_t err1,err2,err3;
char buf[SIZE];
// 基于当前系统的当前日期/时间
time_t now = time(0);
// 把 now 转换为字符串形式
err1= ctime_s(buf,SIZE,&now);
cout << "本地日期和时间:" << buf << endl;
// 把 now 转换为 tm 结构
tm gmtm;
err2= gmtime_s(&gmtm,&now);
err3= asctime_s(buf,SIZE,&gmtm);
cout << "UTC 日期和时间:" << buf << endl;
}
tm 结构在 C/C++ 中处理日期和时间相关的操作时,显得尤为重要。tm 结构以 C 结构的形式保存日期和时间。大多数与时间相关的函数都使用了 tm 结构。下面的实例使用了 tm 结构和各种与日期和时间相关的函数。
#include "pch.h"
#include
#include
using namespace std;
#define TIMESIZE 26
int main() {
// 时间
time_t now = time(0);
char dt[TIMESIZE];
errno_t err;
err = ctime_s(dt, TIMESIZE, &now);
cout << "local time: " << dt << endl;
cout << "timestamp: " << now << endl;
struct tm ltm;
localtime_s(<m, &now);
cout << "年: " << 1900 + ltm.tm_year << endl;
cout << "月: " << 1 + ltm.tm_mon << endl;
cout << "日: " << ltm.tm_mday << endl;
cout << "时间: " << ltm.tm_hour << ":";
cout << ltm.tm_min << ":";
cout << ltm.tm_sec << endl;
return 0;
}
郑半仙
3.15