我正在尝试为IO使用自定义模板,但出现错误:

"error C2678: binary '>>' : no operator found which takes a left-hand operand of
type 'std::ifstream' (or there is no acceptable conversion)"


我搜索并发现仅建议尝试包含更多标题的建议,并尝试包含:string, fstream, iostream, istream, vector。我可以使用fstream.get(),但是我正在尝试获取以空格分隔的字符串。 (我的文件格式是这样的行:"String1 = String2"

这是我的代码:

template <typename OutType>
OutType Read(std::ifstream& in)
{
    OutType out;
    in >> out;

    return out;
}


任何建议都非常感谢!谢谢!

(P.S.不确定对编译器考虑是否重要,但我使用的是Visual Studio2013。)

最佳答案

问题是您的OutType(您没有显示给我们的)没有operator>>(istream&, OutType&)。您需要为每个可能的OutType定义一个。

关于c++ - 在ifstream中使用运算符'>>'的编译器错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27916465/

10-09 07:06