本文介绍了什么是read()和FREAD()之间的区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在看的Linux工具来源$ C ​​$ C。他们使用阅读()函数那里。有没有标准C FREAD()的功能有区别吗? (我不计算参数为差异。)

I'm reading source code of the linux tool badblocks. They use the read() function there. Is there a difference to the standard C fread() function? (I'm not counting the arguments as a difference.)

推荐答案

阅读()为低电平,无缓冲读。这使得UNIX上的直接系统调用。

read() is a low level, unbuffered read. It makes a direct system call on UNIX.

FREAD()是C库的一部分,并提供缓冲读取。它通常是为了填补其缓冲区调用read()实现的。

fread() is part of the C library, and provides buffered reads. It is usually implemented by calling read() in order to fill its buffer.

这篇关于什么是read()和FREAD()之间的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 15:37