C++中睡眠毫秒的实现方式

原创文章,转载请注明: 转载自勤奋的小青蛙
本文链接地址: C++中睡眠毫秒的实现方式

参考:https://stackoverflow.com/questions/4184468/sleep-for-milliseconds

标准库:

#include <chrono>
#include <thread>

std::this_thread::sleep_for(std::chrono::milliseconds(x));

Linux下:

#include <unistd.h>

unsigned int microseconds;
...
usleep(microseconds);
原创文章,转载请注明: 转载自勤奋的小青蛙
本文链接地址: C++中睡眠毫秒的实现方式

文章的脚注信息由WordPress的wp-posturl插件自动生成



|2|left
打赏

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: