Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经读到,在使用 fstream 进行文件处理时,您可以使用 getline() 从文本文件中读取一行文本。你是怎样做的?
我有一个名为 accounts.txt 的文件。而且我有-> 姓名、年龄、余额,我需要阅读行余额?
谢谢你。
不是每一行,具有 balance 值的行
使用带有参数的 getline 作为流和字符串来存储该行。
获取线(流,线)
#include<iostream> using namespace std; #include<fstream> int main() { fstream fin("filename"); string line; while(getline(fin,line)) cout<<line<<endl; }