<b>C++中的延时函数</b>[VC/C++编程]
本文“<b>C++中的延时函数</b>[VC/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
以上是“<b>C++中的延时函数</b>[VC/C++编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |