2
选择系统调用的第一个参数的目的是什么?
从 man select int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout); nfds是三组中编号最高的文件描述符,加1。 是什么目的nfds,当我们已经有了readfds,writefds并且exceptfds,从可确定的文件描述符?