我们在编程中可能会经常用到时间,比如取得系统的时间(获取系统的年、月、日、时、分、秒,星期等),或者是隔一段时间去做某事,那么我们就用到一些时间函数。
linux下存储时间常见的有两种存储方式,一个是从1970年到现在经过了多少秒,一个是用一个结构来分别存储年月日时分秒的。取得从1970年1月1日至今的秒数。
下面看一个简单的例子:
root@wl-MS-7673:/home/wl/桌面/实验代码/2-2-2# cat -n time.cpp 1 #include <iostream> 2 #include <time.h> 3 using namespace std; 4 int main() 5 { 6 time_t timel; 7 time(&timel); 8 cout<<(asctime(gmtime(&timel)))<<endl; 9 return 0; 10 } root@wl-MS-7673:/home/wl/桌面/实验代码/2-2-2# g++ time.cpp -o time root@wl-MS-7673:/home/wl/桌面/实验代码/2-2-2# ./time Sun Mar 16 09:26:59 2014 root@wl-MS-7673:/home/wl/桌面/实验代码/2-2-2# date 2014年 03月 16日 星期日 17:27:18 CST root@wl-MS-7673:/home/wl/桌面/实验代码/2-2-2#
time(&timel);返回了从1970年1月1日至今的秒数,gmtime(&timel)把秒数转化为struct tm格式,asctime(gmtime(&timel))则把结构体格式化转化为字符串用以输出显示。可以看到,没有对时区进行处理,时间和本地时间差了几个小时的。
例2:
root@wl-MS-7673:/home/wl/桌面/c++# cat -n gettime.cpp 1 #include <iostream> 2 #include <time.h> 3 #include <string> 4 using namespace std; 5 int main() 6 { 7 char* s; 8 time_t time_ptr; 9 time(&time_ptr); 10 s= ctime(&time_ptr); 11 cout<<s<<endl; 12 return 0; 13 } root@wl-MS-7673:/home/wl/桌面/c++# g++ -g gettime.cpp -o gettime root@wl-MS-7673:/home/wl/桌面/c++# ./gettime Sun Mar 16 20:30:30 2014
linux通过C/C++获取本地时间的方法,布布扣,bubuko.com
原文:http://blog.csdn.net/hongkangwl/article/details/21331391