阅读量:8
gettimeofday()函数用于获取当前时间的秒数和微秒数。
使用方法:
- 首先,需要包含头文件<sys/time.h>。
- 创建一个结构体变量struct timeval tv。
- 调用gettimeofday()函数,传入结构体变量的地址作为参数。
- 函数执行后,结构体变量tv中的tv_sec成员将保存当前时间的秒数,tv_usec成员将保存当前时间的微秒数。
示例代码:
#include <stdio.h> #include <sys/time.h> int main() { struct timeval tv; gettimeofday(&tv, NULL); printf("Seconds: %ld\n", tv.tv_sec); printf("Microseconds: %ld\n", tv.tv_usec); return 0; }
注意事项:
- gettimeofday()函数的第二个参数通常传入NULL,表示使用默认的时区。
- tv_sec是time_t类型的整数,表示从1970年1月1日00:00:00开始经过的秒数。
- tv_usec是long int类型的整数,表示从1970年1月1日00:00:00开始经过的微秒数。