<ctime>

包含标准 C 库标头 <time.h> 并将关联名称添加到 std 命名空间。

语法

#include <ctime>

备注

包含该标头还将确保使用标准 C 库标头中的外部链接声明的名称在 std 命名空间中声明。

常量

#define NULL
#define CLOCKS_PER_SEC
#define TIME_UTC

namespace std {
    using size_t = see below;
    using clock_t = see below ;
    using time_t = see below ;
}

结构

struct timespec;
struct tm;

函数

clock_t clock();
double difftime(time_t time1, time_t time0);
time_t mktime(struct tm* timeptr);
time_t time(time_t* timer);
int timespec_get(timespec* ts, int base);
char* asctime(const struct tm* timeptr);
char* ctime(const time_t* timer);
struct tm* gmtime(const time_t* timer);
struct tm* localtime(const time_t* timer);
size_t strftime(char* s, size_t maxsize, const char* format, const struct tm* timeptr);

另请参阅

头文件引用
C++ 标准库概述
C++ 标准库中的线程安全