C++记录程序运行时间的4方法
目录
(图片来源网络,侵删)
1. 使用 库(C++11及以后版本)
2. 使用库(较旧但常用的方法)
3、使用第三方库(如Boost.Timer)
4. 使用Windows API函数(Windows平台特有)
1. 使用 库(C++11及以后版本)
库提供了高精度的时间测量功能。
#include #include int main() { auto start = std::chrono::high_resolution_clock::now(); // Your code here // ... auto stop = std::chrono::high_resolution_clock::now(); auto duration = std::chrono::duration_cast(stop - start).count(); std::cout
文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。