c++ delay函數(shù)怎么正確使用

c++
小樊
114
2024-07-30 12:28:11

在C++中,要實(shí)現(xiàn)延遲執(zhí)行的功能,可以使用以下方法:

  1. 使用std::this_thread::sleep_for函數(shù):
#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;
}
  1. 使用 Sleep 函數(shù)(僅適用于Windows平臺(tái)):
#include <iostream>
#include <windows.h>

int main() {
    std::cout << "Start" << std::endl;
    
    // 延遲1秒
    Sleep(1000);
    
    std::cout << "End" << std::endl;
    
    return 0;
}

以上是兩種常用的延遲執(zhí)行方法,分別適用于不同的操作系統(tǒng)平臺(tái)。在實(shí)際項(xiàng)目中,根據(jù)具體的需求和情況選擇合適的方法來(lái)實(shí)現(xiàn)延遲執(zhí)行。

0