gettimeofday
是一个用于获取当前系统时间的函数,它返回一个 timeval
结构体,包含两个成员:tv_sec
和 tv_usec
#include <sys/time.h>
struct timeval {
time_t tv_sec; // 秒数
suseconds_t tv_usec; // 微秒数
};
要解析 gettimeofday
的返回值,您需要执行以下步骤:
<sys/time.h>
。gettimeofday
函数,将返回的 timeval
结构体指针赋值给一个变量。tv_sec
和 tv_usec
成员获取秒数和微秒数。以下是一个简单的示例:
#include <stdio.h>
#include <sys/time.h>
int main() {
struct timeval currentTime;
// 获取当前系统时间
gettimeofday(¤tTime, NULL);
// 解析返回值
time_t seconds = currentTime.tv_sec;
suseconds_t microseconds = currentTime.tv_usec;
// 输出结果
printf("Current time: %ld seconds and %ld microseconds\n", seconds, microseconds);
return 0;
}
这个示例将输出类似以下内容的结果(具体值取决于您运行程序的时间):
Current time: 1629847234 seconds and 423456 microseconds
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: linux卸载php 怎样检查是否卸载