实现应用暂停x毫秒

Posted scruffybear

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现应用暂停x毫秒相关的知识,希望对你有一定的参考价值。

文章目录

实现应用暂停x毫秒, 测试成功。

#include <iostream>
#include <time.h>

using namespace std;

void sleepcp(int milliseconds);

void sleepcp(int milliseconds) // Cross-platform sleep function

    clock_t time_end;
    time_end = clock() + milliseconds * CLOCKS_PER_SEC/1000;
    while (clock() < time_end)
    
    

int main()

    cout << "Hi! At the count to 3, I'll die! :)" << endl;
    sleepcp(3000);
    cout << "urrrrggghhhh!" << endl;

参考

Sleep for milliseconds

以上是关于实现应用暂停x毫秒的主要内容,如果未能解决你的问题,请参考以下文章

php--------暂停函数 sleep() 与 usleep() 的区别

在 16 位裸机 nasm 组件中休眠 x 毫秒

如何让R执行暂停,休眠,等待X秒?

跳转前暂停几秒js如何实现

JavaScript 中是不是有睡眠/暂停/等待功能? [复制]

如何暂停所有 jQuery 动画?