在C++中,并沒有直接的pause
函數。如果你想要在程序中暫停一段時間,可以使用std::this_thread::sleep_for
函數來實現。
示例代碼如下:
#include <chrono>
#include <thread>
int main() {
// 暫停1秒鐘
std::this_thread::sleep_for(std::chrono::seconds(1));
return 0;
}
上述代碼將會暫停程序的執(zhí)行1秒鐘。你也可以使用std::chrono::milliseconds
來暫停指定的毫秒數,或者使用std::chrono::minutes
、std::chrono::hours
等來暫停更長的時間。