gpt4 book ai didi

c++ - 如何减去两个 gettimeofday 实例?

转载 作者:IT王子 更新时间:2023-10-29 00:52:23 25 4
gpt4 key购买 nike

我想减去两个 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 实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8668695/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com