2023-05-14 07:00:05

休眠毫秒

我知道POSIX休眠(x)函数使程序休眠x秒。C++中是否有一个函数可以让程序休眠x毫秒?


当前回答

我使用这个:

#include <thread>
#define sleepms(val) std::this_thread::sleep_for(val##ms)

例子:

sleepms(200);

其他回答

#include <windows.h>

语法:

Sleep (  __in DWORD dwMilliseconds   );

用法:

Sleep (1000); //Sleeps for 1000 ms or 1 sec

在C++中休眠程序的方法是sleep(int)方法。它的头文件是#include“windows.h”

例如:

#include "stdafx.h"
#include "windows.h"
#include "iostream"
using namespace std;

int main()
{
    int x = 6000;
    Sleep(x);
    cout << "6 seconds have passed" << endl;
    return 0;
}

它的睡眠时间以毫秒为单位,没有限制。

Second = 1000 milliseconds
Minute = 60000 milliseconds
Hour = 3600000 milliseconds

在C++11中,您可以使用标准库设施来实现这一点:

#include <chrono>
#include <thread>
std::this_thread::sleep_for(std::chrono::milliseconds(x));

清晰易读,无需猜测sleep()函数使用的单位。

选择调用是一种提高精度的方法(睡眠时间可以以纳秒为单位)。

我使用这个:

#include <thread>
#define sleepms(val) std::this_thread::sleep_for(val##ms)

例子:

sleepms(200);