📌  相关文章
📜  如何丢弃文件的第一行 ifstream - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:45.137000             🧑  作者: Mango

代码示例1
ifstream stream("filename.txt");
string dummyLine;
getline(stream, dummyLine);
// Begin reading your stream here
while (stream)
   ...