清除字符串流

时间:2013-12-24 19:09:15

标签: c++ fstream stringstream

如何清除字符串流。我逐行标记文件,,字符串流是全局的。我可以标记第一行,但我不能让第二行工作

stringstream currentLine;

while (!inputFile.eof())
{
currentLine << getlinefromfile(); //Gets the next Line
tokenizeLine(); //Tokenizes the line using the global stringstream peek() fnc
currentLine.str("");
currentLine.clear();
}

以上是我目前的尝试,但它不起作用。

0 个答案:

没有答案