标签:
头文件
#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; }
标签:
原文地址:http://www.cnblogs.com/raichen/p/5507186.html