C++ 日期和时间



C++ 标准库没有提供合适的日期类型。C++ 从 C 继承了用于日期和时间操作的结构体和函数。要访问与日期和时间相关的函数和结构体,您需要在 C++ 程序中包含 <ctime> 头文件

有四种与时间相关的类型:clock_t、time_t、size_ttm。类型 - clock_t、size_t 和 time_t 能够以某种整数形式表示系统时间和日期。

结构体类型 tmC 结构体 的形式保存日期和时间,具有以下元素:

struct tm {
   int tm_sec;   // seconds of minutes from 0 to 61
   int tm_min;   // minutes of hour from 0 to 59
   int tm_hour;  // hours of day from 0 to 24
   int tm_mday;  // day of month from 1 to 31
   int tm_mon;   // month of year from 0 to 11
   int tm_year;  // year since 1900
   int tm_wday;  // days since sunday
   int tm_yday;  // days since January 1st
   int tm_isdst; // hours of daylight savings time
}

以下是我们在 C 或 C++ 中处理日期和时间时使用的重要函数。所有这些函数都是标准 C 和 C++ 库的一部分,您可以使用下面给出的 C++ 标准库参考检查它们的详细信息。

序号 函数和用途
1

time_t time(time_t *time);

此函数返回系统当前日历时间,以自 1970 年 1 月 1 日以来的秒数表示。如果系统没有时间,则返回 .1。

2

char *ctime(const time_t *time);

此函数返回一个指向字符串的指针,该字符串的格式为 day month year hours:minutes:seconds year\n\0

3

struct tm *localtime(const time_t *time);

此函数返回一个指向表示本地时间的 tm 结构体的指针。

4

clock_t clock(void);

此函数返回一个近似值,表示调用程序已运行的时间量。如果时间不可用,则返回 .1。

5

char * asctime ( const struct tm * time );

此函数返回一个指向字符串的指针,该字符串包含存储在 time 指向的结构体中的信息,转换为以下格式:day month date hours:minutes:seconds year\n\0

6

struct tm *gmtime(const time_t *time);

此函数返回一个指向以 tm 结构体形式表示的时间的指针。时间以协调世界时 (UTC) 表示,它本质上是格林威治标准时间 (GMT)。

7

time_t mktime(struct tm *time);

此函数返回 time 指向的结构体中找到的时间的日历时间等效值。

8

double difftime ( time_t time2, time_t time1 );

此函数计算 time1 和 time2 之间的秒差。

9

size_t strftime();

此函数可用于以特定格式格式化日期和时间。

当前日期和时间

假设您想检索当前系统日期和时间,无论是本地时间还是协调世界时 (UTC)。

示例

以下是实现相同目标的示例:

#include <iostream>
#include <ctime>

using namespace std;

int main() {
   // current date/time based on current system
   time_t now = time(0);
   
   // convert now to string form
   char* dt = ctime(&now);

   cout << "The local date and time is: " << dt << endl;

   // convert now to tm struct for UTC
   tm *gmtm = gmtime(&now);
   dt = asctime(gmtm);
   cout << "The UTC date and time is:"<< dt << endl;
}

当以上代码编译并执行时,会产生以下结果:

The local date and time is: Sat Jan  8 20:07:41 2011

The UTC date and time is:Sun Jan  9 03:07:41 2011

使用 struct tm 格式化时间

tm 结构体在 C 或 C++ 中处理日期和时间时非常重要。如上所述,此结构体以 C 结构体形式保存日期和时间。大多数与时间相关的函数都使用 tm 结构体。以下是一个使用各种日期和时间相关函数和 tm 结构体的示例:

在本节中使用结构体时,我假设您对 C 结构体以及如何使用 箭头 -> 运算符 访问结构体成员有基本的了解。

示例

#include <iostream>
#include <ctime>

using namespace std;

int main() {
   // current date/time based on current system
   time_t now = time(0);

   cout << "Number of sec since January 1,1970 is:: " << now << endl;

   tm *ltm = localtime(&now);

   // print various components of tm structure.
   cout << "Year:" << 1900 + ltm->tm_year<<endl;
   cout << "Month: "<< 1 + ltm->tm_mon<< endl;
   cout << "Day: "<< ltm->tm_mday << endl;
   cout << "Time: "<< 5+ltm->tm_hour << ":";
   cout << 30+ltm->tm_min << ":";
   cout << ltm->tm_sec << endl;
}

当以上代码编译并执行时,会产生以下结果:

Number of sec since January 1,1970 is:: 1588485717
Year:2020
Month: 5
Day: 3
Time: 11:31:57
广告