我正在C++中逐行讀取文本文件。我使用此代碼:逐行讀取txt
while (inFile)
{
getline(inFile,oneLine);
}
這是一個文本文件:
-------
This file is a test to see
how we can reverse the words
on one line.
Let's see how it works.
Here's a long one with a quote from The Autumn of the Patriarch. Let's see if I can say it all in one breath and if your program can read it all at once:
Another line at the end just to test.
-------
問題是我只能讀取段落開頭「這是一個漫長的等......」,並停止「立刻:」 我解決不了所有的文字。你有什麼建議嗎?
您知道每次讀取一行時,您將覆蓋'oneLine'的內容,因此while循環後面的'oneLine'中唯一的內容已經終止。 – PeterT
你真的沒有包含太多的代碼...... – DilithiumMatrix