我需要使用字符串流从文件中读取表达式并将表达式转换为另一种形式。但是我很难弄清楚如何使用Istringstream从文件中读取行。有人可以帮我提供#include和语法吗?谢谢

最佳答案

#include <fstream>

std::ifstream file("filename.txt");

StuffType stuff;
while(file >> stuff)
{
    // If you are here you have successfully read stuff.
}

关于c++ - 如何使用IStringStream读取文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11286906/

10-13 08:23