标准库中无该函数
但在某些编译系统中有,在有些系统库中有,要根据你那边的环境而定。
如:
linux中有,unsigned int sleep(unsigned int seconds),传入挂起时间,成功返回0,不成功则返回余下的秒数。
windows系统中有Sleep函数(注意大写),void Sleep(DWORD dwMilliseconds); 提供挂起的毫秒数。
例如:
#include
#include
using namespace std;
int main()
{
Sleep(3000);//暂停3秒 S要大写
return 0;
}
在你想要停的地方加入
try{
Thread.sleep(1000);//参数代表休眠多久,1000代表1000ms也就是一秒,这个方法会抛出异常所以要try catch
}catch(Exception e){
}
继承Thread类或者Runnable接口,可以使用sleep(Long minuts)来使线程进入休眠。
Thread.sleep(arg0)
会抛出异常的