博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
time函数及相关
阅读量:6698 次
发布时间:2019-06-25

本文共 1586 字,大约阅读时间需要 5 分钟。

1 #include 
2 #include
3 #include
4 5 using namespace std; 6 7 int main( int argc, char *argv[]); 8 void timestamp( void); 9 10 int main( int argc, char *argv[])11 // argv : a pointer ( point to an array ( array stores pointers))12 {13 int i;14 bool VERBOSE = true;15 16 if( VERBOSE)17 {18 timestamp();19 20 cout << "\n";21 cout << "ARGS\n";22 cout << " C++ version\n";23 cout <<"\n";24 cout << " Compiled on " << __DATE__ << "at" << __TIME__ << ".\n"; //显示编译时的时间25 cout << __FILE__ <

学习到的东西:编译器预定义到的宏。  

再次理解main函数的参数“ char *argv[]",argv[]是个数组,数组里面存储的是char* 指针,即数组里面的内容是指针。

// wchar.h 中struct tm {        int tm_sec;     /* seconds after the minute - [0,59] */        int tm_min;     /* minutes after the hour - [0,59] */        int tm_hour;    /* hours since midnight - [0,23] */        int tm_mday;    /* day of the month - [1,31] */        int tm_mon;     /* months since January - [0,11] */        int tm_year;    /* years since 1900 */        int tm_wday;    /* days since Sunday - [0,6] */        int tm_yday;    /* days since January 1 - [0,365] */        int tm_isdst;   /* daylight savings time flag */        };

time()获得时间信息;localtime()转换信息为时间表示的形式;strftime()将时间转换为字符串的形式,便于输出。

原型:time_t time( time_t* timer)  The value returned generally represents the number of seconds since 00:00 hours, Jan 1, 1970 UTC.  将返回的值返回到timer里面。如果timer是NULL 则返回就完了。

源代码来源:

ctime:

转载于:https://www.cnblogs.com/jiangyoumiemie/archive/2013/06/03/3116038.html

你可能感兴趣的文章
基于环信sdk的陌生人交友php服务器代码开源
查看>>
STL 容器和迭代器连载6_顺序容器的操作3
查看>>
JDBC学习笔记——事务、存储过程以及批量处理
查看>>
Spring JDBC最佳实践(2)
查看>>
mysql查看binlog日志内容
查看>>
用fputc()函数以字符串形式写入字符到磁盘文件
查看>>
Eclipse安装VJET报错解决办法
查看>>
Nonblocking I/O 与 Asynchronous I/O
查看>>
jekins搭建
查看>>
HashMap中数组初始化的秘密
查看>>
high-speed A/D performance metrics and Amplifie...
查看>>
微信小程序中使用emoji表情相关说明
查看>>
ios 图片添加阴影
查看>>
Hibernate实体JSONObject化时遇到的问题
查看>>
Linux负载均衡软件LVS之一(概念篇)
查看>>
test
查看>>
young people can also be a leader
查看>>
rabbitmq的安装全过程
查看>>
windows 下安装rabbitmq
查看>>
zmail邮件系统安装手册 V2.0版本
查看>>