程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++中的延時函數

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved