在C++中,您可以使用 <thread>
庫中的 sleep_for
函數來實現等待。這個函數會讓當前線程暫停執行指定的時間段。以下是一個簡單的示例:
#include <iostream>
#include <thread>
#include <chrono>
int main() {
std::cout << "開始等待...\n";
// 等待1秒(1000毫秒)
std::this_thread::sleep_for(std::chrono::seconds(1));
std::cout << "等待結束。\n";
return 0;
}
在這個示例中,我們首先包含了 <thread>
和 <chrono>
頭文件。然后,我們使用 std::this_thread::sleep_for
函數來讓當前線程等待1秒鐘。注意,我們需要傳遞一個 std::chrono::duration
對象作為參數,這里我們使用了 std::chrono::seconds
類型,表示1秒。當然,您也可以使用其他時間單位,如毫秒、微秒等。