我正在试图弄清楚如何用c ++计算时间。我在做 一个程序,每3秒发生一次事件,例如打印出“你好”等;
答案 0 :(得分:3)
这是一个使用两个线程的示例,因此您的程序不会在C ++ 11中冻结和this_thread::sleep_for()
:
#include <iostream>
#include <chrono>
#include <thread>
using namespace std;
void hello()
{
while(1)
{
cout << "Hello" << endl;
chrono::milliseconds duration( 3000 );
this_thread::sleep_for( duration );
}
}
int main()
{
//start the hello thread
thread help1(hello);
//do other stuff in the main thread
for(int i=0; i <10; i++)
{
cout << "Hello2" << endl;
chrono::milliseconds duration( 3000 );
this_thread::sleep_for( duration );
}
//wait for the other thread to finish in this case wait forever(while(1))
help1.join();
}
答案 1 :(得分:1)
您可以使用boost::timer
来计算C ++中的时间:
using boost::timer::cpu_timer;
using boost::timer::cpu_times;
using boost::timer::nanosecond_type;
...
nanosecond_type const three_seconds(3 * 1000000000LL);
cpu_timer timer;
cpu_times const elapsed_times(timer.elapsed());
nanosecond_type const elapsed(elapsed_times.system + elapsed_times.user);
if (elapsed >= three_seconds)
{
//more then 3 seconds elapsed
}
答案 2 :(得分:0)
它取决于您的操作系统/编译器。
案例1:
如果您有C ++ 11,那么您可以按照Chris的建议使用:
std :: this_thread :: sleep_for()//你必须包含头文件线程
案例2:
如果您使用的是Windows平台,那么您还可以使用以下内容:
#include windows.h
int main ()
{
event 1;
Sleep(1000); // number is in milliseconds 1Sec = 1000 MiliSeconds
event 2;
return 0;
}
案例3:
在linux平台上,您可以简单地使用:
睡觉(几秒钟);