当前位置:  开发笔记 > 编程语言 > 正文

如何从1970年1月1日开始用c语言获得UTCTime(以毫秒为单位)

如何解决《如何从1970年1月1日开始用c语言获得UTCTime(以毫秒为单位)》经验,为你挑选了3个好方法。

有没有办法在c语言中使用time.h从1970年获得毫秒及其分数部分?



1> stackoverflo..:

这适用于Ubuntu Linux:

#include 

...

struct timeval tv;

gettimeofday(&tv, NULL);

unsigned long long millisecondsSinceEpoch =
    (unsigned long long)(tv.tv_sec) * 1000 +
    (unsigned long long)(tv.tv_usec) / 1000;

printf("%llu\n", millisecondsSinceEpoch);

在撰写本文时,上面的printf()给了我1338850197035.您可以在TimestampConvert.com网站上进行健全性检查,您可以在其中输入值以获取等效的人类可读时间(尽管没有毫秒精度) .



2> Plow..:

如果你想要毫秒级的分辨率,你可以在Posix中使用gettimeofday().对于Windows实现,请参阅windows的gettimeofday函数.

#include 

...

struct timeval tp;
gettimeofday(&tp);
long int ms = tp.tv_sec * 1000 + tp.tv_usec / 1000;


它可能应该是`gettimeofday(&tv,NULL)`

3> caf..:

它不是标准C,但gettimeofday()存在于SysV和BSD派生系统中,并且位于POSIX中.它返回自纪元以来的时间struct timeval:

struct timeval {
    time_t      tv_sec;     /* seconds */
    suseconds_t tv_usec;    /* microseconds */
};

推荐阅读
谢谢巷议
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有