28

boost ::timerを含まないboost1.46を使用していますが、他にどのような方法で関数の時間を計ることができますか。

私は現在これを行っています:

time_t now = time(0);
<some stuff>
time_t after = time(0);

cout << after - now << endl; 

ただし、答えは数秒で表示されるため、関数が1秒未満の場合は0が表示されます。

ありがとう

4

5 に答える 5

30

LinuxまたはWindowsの場合:

#include <ctime>
#include <iostream>

int
main(int, const char**)
{
     std::clock_t    start;

     start = std::clock();
     // your test
     std::cout << "Time: " << (std::clock() - start) / (double)(CLOCKS_PER_SEC / 1000) << " ms" << std::endl;
     return 0;
}

幸運を ;)

于 2013-02-26T15:17:49.097 に答える
27

使用std::chrono

#include <chrono>
#include <thread>
#include <iostream>

// There are other clocks, but this is usually the one you want.
// It corresponds to CLOCK_MONOTONIC at the syscall level.
using Clock = std::chrono::steady_clock;
using std::chrono::time_point;
using std::chrono::duration_cast;
using std::chrono::milliseconds;
using namespace std::literals::chrono_literals;
using std::this_thread::sleep_for;

int main()
{
    time_point<Clock> start = Clock::now();
    sleep_for(500ms);
    time_point<Clock> end = Clock::now();
    milliseconds diff = duration_cast<milliseconds>(end - start);
    std::cout << diff.count() << "ms" << std::endl;
}

std::chronoはC++11、std::literalsはC ++ 14です(それ以外の場合は必要ですmilliseconds(500))。

于 2016-05-07T17:50:50.997 に答える
9

ブースト1.46には時間のバージョンがあります(ちょうど別の場所にあります)。それを指摘してくれた@jogojapanに感謝します。

これは次のように実行できます。

#include <boost/timer.hpp>

timer t;
<some stuff>
std::cout << t.elapsed() << std::endl;

または、@ Quentin Perezが指摘したようにstdlibsを使用することもできます(最初に尋ねられたものをそのまま受け入れます)

于 2013-02-26T15:25:19.250 に答える
3

Quentin Perezのソリューションに基づいて、std :: functionとlambdaを使用して、任意の関数を時間に渡すことができます。

#include <ctime>
#include <iostream>
#include <functional>

void timeit(std::function<void()> func) {
    std::clock_t start = std::clock();

    func();

    int ms = (std::clock() - start) / (double) (CLOCKS_PER_SEC / 1000);

    std::cout << "Finished in " << ms << "ms" << std::endl;
}

int main() {
    timeit([] {
        for (int i = 0; i < 10; ++i) {
            std::cout << "i = " << i << std::endl;
        } 
    });

    return 0;
}
于 2016-01-05T21:15:57.890 に答える
2

longを使用して現在の時刻の値を開始値として保持してから、現在の時刻をdoubleに変換できます。例として使用するスニペットコードを次に示します。

#include <iostream>
#include <stdlib.h>
#include <time.h>
#include <sys/types.h>
#include <sys/timeb.h>
int main()
{

struct      _timeb tStruct;
double      thisTime;
bool        done = false;
long        startTime;

 struct _timeb
 {
 int   dstflag;   // holds a non-zero value if daylight saving time is in effect
 long  millitm;   // time in milliseconds since the last one-second hack
 long  time;      // time in seconds since 00:00:00 1/1/1970
 long  timezone;  // difference in minutes moving west from UTC

 };

  _ftime(&tStruct); // Get start time

thisTime = tStruct.time + (((double)(tStruct.millitm)) / 1000.0); // Convert to double
startTime = thisTime;                                             // Set the starting time (when the function begins)


while(!done)     // Start an eternal loop
    {
    system("cls");  // Clear the screen
    _ftime(&tStruct);    // Get the current time
    thisTime = tStruct.time + (((double)(tStruct.millitm)) / 1000.0); // Convert to double
    // Check for 5 second interval to print status to screen
    cout << thisTime-startTime; // Print it. 

    }
}
于 2013-02-26T15:26:52.047 に答える