在C++中,可以使用std::this_thread::sleep_for
函數來進行非阻塞延時。這個函數可以讓當前線程在指定的時間段內休眠,而不會阻塞其他線程的執行。
下面是一個簡單的示例代碼,演示如何使用std::this_thread::sleep_for
函數實現非阻塞延時:
#include <iostream>
#include <thread>
#include <chrono>
int main() {
std::cout << "Start" << std::endl;
// 非阻塞延時1秒
std::this_thread::sleep_for(std::chrono::seconds(1));
std::cout << "End" << std::endl;
return 0;
}
在這個示例中,程序會先輸出"Start",然后調用std::this_thread::sleep_for
函數休眠1秒,最后輸出"End"。這段延時并不會阻塞其他線程的執行。