如何用 C 语言读取多个文件?
我正在开发一个必须从 txt 文件读取的程序。 我知道有一个名为 fopen("myfile.txt","rt")
的函数,但是如果我有 10 个文件怎么办?我需要调用该函数 10 次(每个文件调用一次)吗?
I am working on a program which have to read from txt files.
I know that there's a function called fopen("myfile.txt","rt")
, but what if I have 10 files? Do i need to call the function 10 times (a call for every file)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。但是,如果您对每个函数执行相同的例程,请将该行为抽象为接受文件名的函数。现在调用该函数 10 次,每个文件名调用一次。
这是计算机科学的一个核心概念。流行语包括“抽象”、“常规”、“可重用性”等。
Yes. But if you perform the same routines on each of those functions, abstract that behaviour into a function that accepts the name of a file. Now call that function 10 times, once with each file name.
This is a core concept in computer science. Buzzwords include "abstraction", "routine", "reusability", etc.
是的。每个文件需要一次函数调用。
Yes. One function call per file is needed.