gpt4 book ai didi

c++ - 在 C++ 中暂停程序执行 5 秒

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:50:20 24 4
gpt4 key购买 nike

我想暂停 C++ 程序的执行 5 秒。在 android Handler.postDelayed 中具有我正在寻找的所需功能。 c++中有类似的东西吗?

最佳答案

#include <iostream>
#include <chrono>
#include <thread>

int main()
{
std::cout << "Hello waiter" << std::endl;
std::chrono::seconds dura( 5);
std::this_thread::sleep_for( dura );
std::cout << "Waited 5s\n";
}

this_thread::sleep_for 至少在指定的 sleep_duration 内阻止当前线程的执行。

关于c++ - 在 C++ 中暂停程序执行 5 秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23609507/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com