wait_for
是C++標準庫 <chrono>
和 <thread>
中的一個函數,它用于等待一個給定的時間間隔或者直到某個條件成立
#include <iostream>
#include <chrono>
#include <thread>
int main() {
std::cout << "Starting...\n";
// 等待1秒
std::this_thread::sleep_for(std::chrono::seconds(1));
std::cout << "1 second has passed...\n";
// 等待直到某個條件成立(例如,當前時間大于某個特定值)
auto start = std::chrono::steady_clock::now();
while (std::chrono::steady_clock::now() - start < std::chrono::seconds(2)) {
// 檢查條件是否滿足
if (/* your condition here */) {
break;
}
// 如果沒有滿足條件,繼續等待一段時間
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
std::cout << "Condition met or 2 seconds have passed...\n";
return 0;
}
在這個示例中,wait_for
函數用于等待1秒。你可以根據需要修改時間間隔和條件。