c – 如何减去两个gettimeofday实例?

c – 如何减去两个gettimeofday实例?,第1张

概述我想减去两个gettimeofday实例,并以毫秒为单位显示答案. 这个想法是: static struct timeval tv; gettimeofday(&tv, NULL); static struct timeval tv2; gettimeofday(&tv2, NULL); static struct timeval tv3=tv2-tv; 然后将’tv3’转换为 我想减去两个gettimeofday实例,并以毫秒为单位显示答案.

这个想法是:

static struct timeval tv;  gettimeofday(&tv,NulL);  static struct timeval tv2;  gettimeofday(&tv2,NulL);  static struct timeval tv3=tv2-tv;

然后将’tv3’转换为毫秒分辨率.

解决方法 你可以使用glibc提供的timersub()函数,然后将结果转换为毫秒(尽管如此,请注意溢出!). 总结

以上是内存溢出为你收集整理的c – 如何减去两个gettimeofday实例?全部内容,希望文章能够帮你解决c – 如何减去两个gettimeofday实例?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1219481.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存