我試圖避免在我的代碼中使用istream的eof,它假設處理文本文件,有關原因的更多信息,請參閱here。避免在C++中使用isofream的eof
下面的代碼嘗試逐行讀取,但是每一步代碼讀取兩行而不是一行。
顯然getline函數執行兩次,數據在被strtok_s
函數處理之前首先被讀取到buf。
如果我要忽略內部getline指令,我怎樣才能將數據寫入buf[]
進行處理?
while (getline(fin, line))
//while(!fin.eof())
{
// read an entire line into memory
char buf[MAX_CHARS_PER_LINE];
fin.getline(buf, MAX_CHARS_PER_LINE);
// parse the line into blank-delimited tokens
int n = 0; // a for-loop index
int s = 0;
// array to store memory addresses of the tokens in buf
const char* token[MAX_TOKENS_PER_LINE] = {}; // initialize to 0
char *next_token;
// parse the line
token[0] = strtok_s(buf, DELIMITER, &next_token); // first token
if (token[0]) // zero if line is blank
{
for (n = 1; n < MAX_TOKENS_PER_LINE; n++)
{
token[n] = strtok_s(0, DELIMITER, &next_token);
if (!token[n]) break; // no more tokens
}
}
// process (print) the tokens
for (int i = 0; i < n; i++) // n = #of tokens
cout << "Token[" << i << "] = " << token[i] << endl;
cout << endl;
}
fin.clear();
fin.close();
'DELIMITER'的值是什麼? – hmjd
分隔符是「|」。我不認爲分隔符與此有任何關係。 – Hawk
這段代碼有兩個調用'getline'的函數,所以它在每次循環中讀取兩行。 –