fgets() 和 fread() - 有什么区别? [英] fgets() and fread() - What is the difference?

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

问题描述

我了解 fgets() 之间的区别fgetss() 但我不明白 之间的区别fgets()fread(),有人可以澄清一下这个主题吗?哪个更快?谢谢!

I understand the differences between fgets() and fgetss() but I don't get the difference between fgets() and fread(), can someone please clarify this subject? Which one is faster? Thanks!

推荐答案

fgets 读取一行——即它将在换行符处停止.

fgets reads a line -- i.e. it will stop at a newline.

fread 读取原始数据——它将在指定的(或默认)字节数后停止,独立于可能存在或不存在的任何换行符.

fread reads raw data -- it will stop after a specified (or default) number of bytes, independently of any newline that might or might not be present.


速度不是使用一个而不是另一个的理由,因为这两个功能只是不做同样的事情:


Speed is not a reason to use one over the other, as those two functions just don't do the same thing :

  • 如果您想从文本文件中读取一行,请使用 fgets
  • 如果您想从文件中读取一些数据(不一定是一行),请使用fread.

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

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆