gpt4 book ai didi

c - 设置读取标准输入的超时时间

转载 作者:太空狗 更新时间:2023-10-29 16:40:45 28 4
gpt4 key购买 nike

有没有一种方法可以使从 stdin 读取超时以使程序不会挂起太久?

read(0, var, numberofbytes);

最佳答案

您可以使用 ncurses或者,如果您不想,可以按照本 blog post 中的说明使用 select .基本上,您可以使用 select 并指定超时。如果设置了 stdin FD,那么您可以安全地从中读取并且不会阻塞。如果您想了解有关选择的更多信息,请查看 this当然是wikipedia .这是一个方便的电话了解。

编辑:我觉得有必要提供代码,所以这里是直接来自博客文章的一些评论。

// if != 0, then there is data to be read on stdin
int kbhit()
{
// timeout structure passed into select
struct timeval tv;
// fd_set passed into select
fd_set fds;
// Set up the timeout. here we can wait for 1 second
tv.tv_sec = 1;
tv.tv_usec = 0;

// Zero out the fd_set - make sure it's pristine
FD_ZERO(&fds);
// Set the FD that we want to read
FD_SET(STDIN_FILENO, &fds); //STDIN_FILENO is 0
// select takes the last file descriptor value + 1 in the fdset to check,
// the fdset for reads, writes, and errors. We are only passing in reads.
// the last parameter is the timeout. select will return if an FD is ready or
// the timeout has occurred
select(STDIN_FILENO+1, &fds, NULL, NULL, &tv);
// return 0 if STDIN is not ready to be read.
return FD_ISSET(STDIN_FILENO, &fds);
}

关于c - 设置读取标准输入的超时时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3711830/

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