📜  什么是 linux 中的文件描述符 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:26.100000             🧑  作者: Mango

代码示例1
In simple words, when you open a file, the operating system creates an entry 
to represent that file and store the information about that opened file. 
So if there are 100 files opened in your OS then there will be 100 entries in OS (somewhere in kernel). 
These entries are represented by integers like (...100, 101, 102....). 
This entry number is the file descriptor. 
So it is just an integer number that uniquely represents an opened file in operating system. 
If your process opens 10 files then your Process table will have 10 entries for 
file descriptors.

Similarly when you open a network socket, 
it is also represented by an integer and it is called Socket Descriptor.