gpt4 book ai didi

c++ - 如何打印我的代码的执行时间?

转载 作者:行者123 更新时间:2023-11-28 00:13:18 27 4
gpt4 key购买 nike

我正在使用 visual studio 2013,我需要找出我的代码 (C++) 的执行时间。无论如何,有没有让我这样做的?

最佳答案

这可能是可能的答案之一:

对于 Visual Studio :转到Tools/Options/Projects and Solutions/VC++ Project Settings 并将 Build Timing 选项设置为“yes”。之后每次构建的时间都会显示在输出窗口中。

对于 C

    #include <time.h>
int main(void)
{
clock_t tStart = clock();
/* Do your stuff here */
printf("Time taken: %.2fs\n", (double)(clock() - tStart)/CLOCKS_PER_SEC);
return 0;
}

对于 C++

对于 C++11

关于c++ - 如何打印我的代码的执行时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31905157/

27 4 0
文章推荐: javascript - BrowserSync 和 Gulp。无法重新加载以适用于 JS/HTML
文章推荐: html - Outlook 2010 中的宽度问题
文章推荐: javascript - Ajax 禁用弹出菜单插件
文章推荐: html - 如何将 html 组件放在由
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com