头文件
#include "sys/time.h"
结构体
struct timezone { int tz_minuteswest; /*格林威治时间往西方的时差*/ int tz_dsttime; /*DST 时间的修正方式*/ }
struct timeval { long int tv_sec; // 秒数 long int tv_usec; // 微秒数 }
函数
#include <stdio.h> #include <sys/time.h> int main() { struct timeval cur_time; gettimeofday( &cur_time, NULL ); printf("%d.%d", cur_time.tv_sec, cur_time.tv_usec); return 0; }
时间: 2024-10-27 04:24:47