5

我有以下程序:

 #include <stdio.h>
 #define STDIN 0

 int main()
 {

    fd_set fds;
    int maxfd;
    // sd is a UDP socket

    maxfd = (sd > STDIN)?sd:STDIN;

    while(1){

        FD_ZERO(&fds);
        FD_SET(sd, &fds); 
        FD_SET(STDIN, &fds); 

        select(maxfd+1, &fds, NULL, NULL, NULL); 

        if (FD_ISSET(STDIN, &fds)){
              printf("\nUser input - stdin");
        }
        if (FD_ISSET(sd, &fds)){
              // socket code
        }
     }
 }

我面临的问题是,一旦在 STDIN 上检测到输入,“用户输入 - 标准输入”消息就会继续打印......为什么它不只打印一次,然后在下一个 while 循环检查哪个描述符有输入?

谢谢。

4

2 回答 2

13

select功能仅在有可用输入时告诉您。如果您实际上不使用它,则 select 将继续直接下降。

于 2012-04-18T23:05:38.223 回答
3

因为您没有阅读 STDIN,所以下次在循环中仍有一些内容要阅读。

您需要阅读 STDIN 以防止这种情况发生。

于 2012-04-18T23:04:49.170 回答