Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对在 Visual Studio 中由 C++ 编写的一个函数的 CPU 消耗有疑问。例如,我有一个功能
void test(){}
我想评估这个功能的性能。如何计算 Visual C++ 中的 CPU 消耗?
谢谢
Visual Studio 有一个内置的性能分析工具,应该可以做到这一点。检查这个
进行性能测试的最简单方法是使用时钟
#include <ctime> std::clock_t t = std::clock(); for (int i = 0; i < 10000; i++) test(); t = clock() - t;
并且您可以输出10000次测试t的CPU时钟消耗(点击)。
t