I/O多路复用模型是什么
发布时间
阅读量:
阅读量
文件
什么是文件?
Files, specifically referred to as computer files (abbreviated as "computer file"), are stored within some long-term or short-term storage devices as a continuous stream of data and belong to the domain of computer file system management.
我们可以简单来理解,一个文件在计算机底层就是一个 n 比特的序列。

如何理解 Everything is file ?
作为一名程序员群体中的常见观点,在编程实践过程中会反复强调这样一个理念:一切都可以被视为文件来进行管理与操作。具体来说,在计算机系统中涉及的数据存储介质(如磁盘)、数据传输介质(如网络)、以及设备(如终端),甚至是用于进程之间通信的各种工具(例如PiPe),都可以被抽象地看待为一种统一的数据载体与管理对象。
