C++中的延时函数
当前位置:以往代写 > C/C++ 教程 >C++中的延时函数
2019-06-13

C++中的延时函数

C++中的延时函数

1.推荐用Sleep();

MS VC++可以用MFC的Sleep函数,参数是毫秒。

包括在头文件<windows.h>里

/*#include<iostream>
#include<windows.h>
using namespace std;

void main()
{

Sleep(1000); //延时1秒
cout<<"adsd"<<endl;
Sleep(10000); // 留意S大写
cout<<"123"<<endl;

}   */

2.delay();

delay函数要本身写,编译器里没有。

#include <time.h>
void delay(int sec)
{
time_t start_time, cur_time; // 变量声明
time(&start_time);
do { time(&cur_time);
} while((cur_time - start_time) < sec );
}

然后就可以直接挪用了

如:

#include<iostream.h>
#include <time.h>
void delay(int sec)
{
time_t start_time, cur_time; // 变量声明
time(&start_time);

do {
time(&cur_time);
} while((cur_time - start_time) < sec );
}

void main()
{
cout<<"a"<<endl;
delay(5); // 滞后5秒
cout<<"b"<<endl;
}

短于一秒的delay可以这样写:

clock_t start_time, cur_time;
start_time = clock();
while((clock() - start_time) < 3.0 * CLOCKS_PER_SEC)
{
}

但有的编译器不支持clock

    关键字:

在线提交作业