在Linux系统中,可以使用gettimeofday()
函数来获取当前时间。下面是一个简单的示例代码:
#include#include 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()
函数会将当前时间存储在tv
结构体中,其中tv_sec
保存的是秒数,tv_usec
保存的是微秒数。通过这两个字段可以获取当前时间的精确值。