如何从 C++ 中的文件读取整数值
如何从文件中读取整数值?例如,文件中存在这些值:
5 6 7
如果我使用 fstream 打开文件,那么如何获取整数值?
如何读取该数字并避免空格?
How can read integer value from file? For example, these value present in a file:
5 6 7
If I open the file using fstream
then how I can get integer value?
How can read that number and avoid blank space?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
很少有人逐字节读取文件! (一个字符的大小为一字节)。
原因之一是 I/O 操作最慢。因此,执行一次 IO(在磁盘上读取或写入),然后根据需要经常快速地解析内存中的数据。
如果您想解析 strFileContent,您可以通过以下方式将其作为字符数组访问:strFileContent.c_str()
It's really rare that anyone reads a file Byte by Byte ! ( one char has the size of one Byte).
One of the reason is that I/O operation are slowest. So do your IO once (reading or writing on/to the disk), then parse your data in memory as often and fastly as you want.
and if you want to parse strFileContent you can access it as an array of chars this ways: strFileContent.c_str()