如何清除字符串流。我逐行标记文件,,字符串流是全局的。我可以标记第一行,但我不能让第二行工作
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();
}
以上是我目前的尝试,但它不起作用。