在 ifstream 中使用运算符“>>”的编译器错误
Compiler error for using operator '>>' with ifstream
我正在尝试为 IO 使用自定义模板,但出现 错误:
"error C2678: binary '>>' : no operator found which takes a left-hand operand of
type 'std::ifstream' (or there is no acceptable conversion)"
我已经搜索并找到了尝试包含更多 headers 的建议,并且已经尝试包含:string, fstream, iostream, istream, vector
.
我可以使用 fstream.get(),但我正在尝试获取 space 分隔字符串。 (我的文件格式是这样的行:"String1 = String2"
)
这是我的代码:
template <typename OutType>
OutType Read(std::ifstream& in)
{
OutType out;
in >> out;
return out;
}
非常感谢任何建议!谢谢!
(P.S。不确定编译器的考虑是否重要,但我使用的是 Visual Studio 2013。)
问题是您的 OutType
(您没有向我们展示)没有 operator>>(istream&, OutType&)
。您需要为每个可能的 OutType
.
定义一个
您期望 OutType
是如何被 >>
操作员知道的?它理解像 int
、char
等原语,但是如果你想让 OutType 对 << 可用,你应该重载运算符。
我正在尝试为 IO 使用自定义模板,但出现 错误:
"error C2678: binary '>>' : no operator found which takes a left-hand operand of
type 'std::ifstream' (or there is no acceptable conversion)"
我已经搜索并找到了尝试包含更多 headers 的建议,并且已经尝试包含:string, fstream, iostream, istream, vector
.
我可以使用 fstream.get(),但我正在尝试获取 space 分隔字符串。 (我的文件格式是这样的行:"String1 = String2"
)
这是我的代码:
template <typename OutType>
OutType Read(std::ifstream& in)
{
OutType out;
in >> out;
return out;
}
非常感谢任何建议!谢谢!
(P.S。不确定编译器的考虑是否重要,但我使用的是 Visual Studio 2013。)
问题是您的 OutType
(您没有向我们展示)没有 operator>>(istream&, OutType&)
。您需要为每个可能的 OutType
.
您期望 OutType
是如何被 >>
操作员知道的?它理解像 int
、char
等原语,但是如果你想让 OutType 对 << 可用,你应该重载运算符。