c++

c++ wait怎样实现

小樊
81
2024-11-24 04:36:39
栏目: 编程语言

在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秒。当然,您也可以使用其他时间单位,如毫秒、微秒等。

0
看了该问题的人还看了