<code class="language-c++ hljs vala has-numbering"><span class="hljs-preprocessor">#include <unistd.h></span> <span class="hljs-comment">// 返回值: 读到的字节数,若已到文件结尾则返回0,若出错返回-1</span> ssize_t pread(<span class="hljs-keyword">int</span> filedes, <span class="hljs-keyword">void</span> *buf, size_t nbytes, off_t offset); <span class="hljs-comment">// 返回值: 若成功返回已写的字节数,若出错返回-1</span> ssize_t pwrite(<span class="hljs-keyword">int</span> filedes, <span class="hljs-keyword">const</span> <span class="hljs-keyword">void</span> *buf, size_t nbytes, off_t offset);</code><ul style="" class="pre-numbering"><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li></ul>
调用pread相当于顺序调用lseek和read,但pread和这种调用又有重大区别:
调用pwrite相当于调用lseek和write,但也与它们有类似区别。
<code class="language-c++ hljs vala has-numbering"><span class="hljs-preprocessor">#include<unistd.h></span> <span class="hljs-comment">// 成功:返回读到的字节数;出错:返回-1;文件尾:返回0;</span> ssize_t read (<span class="hljs-keyword">int</span> filedes, <span class="hljs-keyword">void</span> *buf, size_t nbytes );</code><ul style="" class="pre-numbering"><li>1</li><li>2</li><li>3</li></ul>
当从普通文件读时,在读到要求字节数之前已到达了文件尾端。
当从终端设备读时,通常一次最多读一行。
<code class="language-c++ hljs vala has-numbering"><span class="hljs-preprocessor">#include<unistd.h></span> <span class="hljs-comment">// 成功:返回已写的字节数;出错:返回-1;</span> ssize_t write (<span class="hljs-keyword">int</span> filedes, <span class="hljs-keyword">const</span> <span class="hljs-keyword">void</span> *buf, size_t nbytes );</code><ul style="" class="pre-numbering"><li>1</li><li>2</li><li>3</li><li>4</li></ul>
因为历史上有些系统不支持O_APPEND,才定义了pread和pwrite。
因为lseek与read之间,可能会出现非预期的效果,所以定义pread。
随机访问的话,pread/pwrite比较方便。