定时功能

时间:2015-01-15 22:12:58

标签: c++

无论我尝试什么,我似乎都无法让简单的计时器工作。我如何看看在没有外部库的情况下运行代码段需要多少毫秒?

我试过了:

time_t total = static_cast<time_t>(0.0f);
for(int i = 0; i < 10; ++i)
{
    time_t start = time(0);
    for(int b = 0; b < 100; ++b)
    {
        newMesh.IsValid();
    }
    time_t end = time(0);
    total += (end - start);
}

time_t average = total / 10;
printf("Average time of Knight IsValid check %d\n", average);

这需要大约15秒,并说需要1毫秒。我也尝试过:

std::clock_t total = static_cast<time_t>(0.0f);
for(int i = 0; i < 10; ++i)
{
    std::clock_t start = std::clock();
    for(int b = 0; b < 100; ++b)
    {
        newMesh.IsValid();
    }
    std::clock_t end = std::clock();
    total += (end - start);
}

std::clock_t average = total / 10;
printf("Average time of Knight IsValid check %d\n", average);

但我被告知这是时钟滴答而不适合分析?

1 个答案:

答案 0 :(得分:0)

在C ++ 11中,您可以使用<chrono>(在GCC 4.9.1中使用C ++ 11和Visual Studio 2012 Update 2):

示例代码:

#include <iostream>
#include <chrono>
#include <iomanip>

int main() {
    std::chrono::steady_clock::time_point begin_time = std::chrono::steady_clock::now();

    // add code to time here

    std::chrono::steady_clock::time_point end_time = std::chrono::steady_clock::now();
    long long elapsed_seconds = std::chrono::duration_cast<std::chrono::seconds>(end_time - begin_time).count();
    std::cout << "Duration (min:seg): " << std::setw(2) << std::setfill('0') << (elapsed_seconds / 60) << ":" << std::setw(2) << std::setfill('0') << (elapsed_seconds % 60) << std::endl;

    return 0;
}

您可以使用其他时间测量(例如毫秒,纳秒等)来实例化duration_cast
最后的示例代码更多信息:http://en.cppreference.com/w/cpp/chrono