boost::timerはCの標準ライブラリのclock()を使って簡単に時間計測をしてくれる便利なクラスです.基本的な使い方は,以下のようになります. #include <iostream> #include <boost/timer.hpp> #include <windows.h> // Sleep用 int main() { boost::timer t; // タイマーの開始 Sleep(1234); std::cout << t.elapsed() << " sec" << std::endl; // 1.234 sec t.restart(); // タイマーのリセット Sleep(2345); std::cout << t.elapsed() << " sec" << std::endl; // 2.344 sec return 0; } elapsed(訳:経過した)でイ