当前位置:Linux教程 - Linux文化 - 请问有没有人使用过select这个函数以及FD_ZERO,FD_SET等等

请问有没有人使用过select这个函数以及FD_ZERO,FD_SET等等


如果用过,请用通俗的语言解释一下,谢谢咯

>>> 此贴的回复 >> 什么是通俗的语言? Reply End-->

>>> 此贴的回复 >> Four macros are provided to manipulate the sets. FD_ZERO will clear a set. FD_SET and FD_CLR add or remove a given descriptor from a set. FD_ISSET tests to see if a descriptor is part of the set; this is useful after select returns.

>>> 此贴的回复 >> 那是几个操作用的宏。一般用在select调用之后。楼上说得很清楚。 ===

>>> 此贴的回复 >> select函数: 系统提供select函数来实现多路复用输入/输出模型。原型: #include #include int select(int maxfd,fd_set *rdset,fd_set *wrset,fd_set *exset,struct timeval *timeout); 参数maxfd是需要监视的最大的文件描述符值+1;rdset,wrset,exset分别对应于需要检测的可读文件描述符的集合,可写文件描述符的集合及异常文件描述符的集合。struct timeval结构用于描述一段时间长度,如果在这个时间内,需要监视的描述符没有事件发生则函数返回,返回值为0。 FD_ZERO,FD_SET,FD_CLR,FD_ISSET: FD_ZERO(fd_set *fdset);将指定的文件描述符集清空,在对文件描述符集合进行设置前,必须对其进行初始化,如果不清空,由于在系统分配内存空间后,通常并不作清空处理,所以结果是不可知的。 FD_SET(fd_set *fdset);用于在文件描述符集合中增加一个新的文件描述符。 FD_CLR(fd_set *fdset);用于在文件描述符集合中删除一个文件描述符。 FD_ISSET(int fd,fd_set *fdset);用于测试指定的文件描述符是否在该集合中。 struct timeval结构: struct timeval{ long tv_sec;//second long tv_usec;//minisecond } timeout设置情况: null:select将一直被阻塞,直到某个文件描述符上发生了事件。 0:仅检测描述符集合的状态,然后立即返回,并不等待外部事件的发生。 特定的时间值:如果在指定的时间段里没有事件发生,select将超时返回。 .......