查看程序运行时间以及延时程序实现
Posted eternalmoonbeam
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看程序运行时间以及延时程序实现相关的知识,希望对你有一定的参考价值。
头文件需要包含iostream,ctime
查看程序运行时间函数:
void ViewRuntime()
{
while (true)
{
cout << clock() << endl;
if (cin.get() != ‘q‘)//按下q键可退出
continue;
else
break;
}
}
延时程序:
void Delay(float secs)//可使用默认参数
{
clock_t delay = secs * CLOCKS_PER_SEC;//需要延时的时间,单位是秒
clock_t start = clock();//设置起始时间点
while (clock() - start < delay);当前时间减起始时间等于延时时间则退出
}
目的是为了测试与V-REP的通信延迟
以上是关于查看程序运行时间以及延时程序实现的主要内容,如果未能解决你的问题,请参考以下文章