gpt4 book ai didi

c++ - 自从在 C++ 中执行以来耗时的最干净和最简单的方法

转载 作者:太空狗 更新时间:2023-10-29 20:24:15 25 4
gpt4 key购买 nike

What is the simplest and cleanest way to get the time since execution of the program (with milliseconds precision) in C++ ?

我正在制作波干扰模拟器来生成 Lissajous curves在 C++ 中。它需要自程序执行以来的时间(精度至少为毫秒)才能运行。经过一番研究,我似乎找不到任何干净简单的方法。
全部<chrono>功能对我来说似乎很困惑。 Stack Overflow 上的类似问题似乎与我的情况无关、令人困惑(对我而言)或不适用。我尝试使用 <time.h> 中的函数, 才发现它们的精度只有秒。
我正在运行 Windows 7 x64。该程序不需要独立于平台,因为它供个人使用。非常感谢任何帮助。
谢谢!

最佳答案

<chrono>函数需要一点时间来适应,但当您了解它们的工作原理时,它们会让事情变得相当容易。

例如,您的问题可以这样解决:

#include <chrono>
#include <thread>
#include <iostream>

// for readability
using hr_clock = std::chrono::high_resolution_clock;
using hr_time_point = hr_clock::time_point;
using hr_duration = hr_clock::duration;
using milliseconds = std::chrono::milliseconds;

int main()
{
// note the program start time
hr_time_point prog_start = hr_clock::now();

// do stuff
std::this_thread::sleep_for(milliseconds(1000));

// find the duration
hr_duration d = hr_clock::now() - prog_start;

// cast the duration to milliseconds
milliseconds ms = std::chrono::duration_cast<milliseconds>(d);

// print out the number of milliseconds
std::cout << "time passed: " << ms.count() << " milliseconds.\n";
}

为了方便起见,您可以创建一个函数来返回自上次调用该函数以来的时间:

milliseconds since_last_call()
{
// retain time between calls (static)
static hr_time_point previous = hr_clock::now();

// get current time
hr_time_point current = hr_clock::now();

// get the time difference between now and previous call to the function
milliseconds ms = std::chrono::duration_cast<milliseconds>(current - previous);

// store current time for next call
previous = current;

// return elapsed time in milliseconds
return ms;
}

int main()
{
since_last_call(); // initialize functions internal static time_point

// do stuff
std::this_thread::sleep_for(milliseconds(1000));

milliseconds ms = since_last_call();

// print out the number of milliseconds
std::cout << "time passed: " << ms.count() << " milliseconds.\n";
}

关于c++ - 自从在 C++ 中执行以来耗时的最干净和最简单的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28928161/

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