为什么自动生成的文件描述符是从3开始的?

Why is the automatically generated file descriptor starting at 3?

是否为不同的进程打开了具有较低值的文件描述符(如果是),或者这只是一个约定?

请参阅下面的解释器会话,在 WSL2 上的 Ubuntu20.04 中执行:

Python 3.8.2 (default, Jul 16 2020, 14:00:26)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> import tempfile
>>>
>>> fd, path_3 = tempfile.mkstemp()
>>> print(fd, path_3)
3 /tmp/tmpeaqkgmmg
>>>
>>> fd, path_4 = tempfile.mkstemp()
>>> print(fd, path_4)
4 /tmp/tmp3tskrarr
>>>
>>> os.close(3)
>>> os.unlink(path_3)
>>>
>>> os.close(4)
>>> os.unlink(path_4)
>>>
>>> fd, path_3 = tempfile.mkstemp()
>>> print(fd, path_3)
3 /tmp/tmpsyqvut1r

从上面的会话中可以清楚地看出,当不再使用文件描述符时,mkstemp 会自动选择可用的最小数字。那么,0、1 和 2 呢?

0、1和2分别是与标准输入、输出和错误链接的文件描述符。 POSIX 兼容系统中的每个进程都应该有它们。您可以将此视为“一切皆文件”理念的直接结果:输入就像一个可以读取的文件,输出就像一个可以写入的文件。

正如评论中提到的Tryph,您可以阅读the wiki article on file descriptors了解更多信息。