C++ <ctime> 库函数 - time()
time_t time(time_t *seconds)
返回自纪元 Epoch(1970-01-01 00:00:00 UTC)起经过的时间,以秒为单位
如果 seconds 不为空,则返回值也存储在变量 seconds 中
头文件
#include <ctime>
函数原型
time_t time(time_t *t)
参数说明
参数 | 说明 |
---|---|
seconds | 指向类型为 time_t 的对象的指针,用来存储 seconds 的值 |
返回值
time 函数以 time_t
对象返回当前日历时间
范例
/** * file: main.cpp * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <iostream> #include <ctime> int main () { time_t seconds; seconds = time(NULL); std::cout << "自 1970-01-01 起的分钟数:" << seconds/60 << std::endl; seconds = NULL; time(&seconds); std::cout << "自 1970-01-01 起的小时数:" << seconds/3600 << std::endl; return 0; }
使用 g++ main.cpp && ./a.out
命令编译运行上面代码,输出结果如下
自 1970-01-01 起的分钟数:25388794 自 1970-01-01 起的小时数:423146