我知道POSIX sleep(x)函数会使程序hibernatex秒。在C ++中是否有使程序hibernatex 毫秒 的功能?
sleep(x)
请注意,毫秒级没有标准的C API,因此(在Unix上)您必须满足usleep,它接受微秒:
usleep
#include <unistd.h> unsigned int microseconds; ... usleep(microseconds);