标签: c++ performance winapi
要测量Windows上某些部分C ++代码的执行时间,我倾向于使用QueryPerformanceCounter()高分辨率计时器。可以在this VCblog post on STL performance中找到一个例子。
QueryPerformanceCounter()
为了编写跨平台 C ++代码,我可以将哪些函数/类用于同一目的?
答案 0 :(得分:6)
假设现代编译器,您可能正在寻找std::chrono::high_resolution_clock
std::chrono::high_resolution_clock