我必须在(C ++,我正在使用MS Visual Studio 2008 SP1)中对类成员函数使用显式特化,但是我无法成功编译它。获得
错误C2910:'File :: operator<<' :不能明确专门化
class File
{
std::ofstream mOutPutFile;
public:
template<typename T>
File& operator<<(T const& data);
};
template<typename T>
File& File::operator<< (T const& data)
{
mOutPutFile << preprosesor(data);
return *this;
}
template< >
File& File::operator<< <> (std::ofstream& out)
{
mOutPutFile << out;
return *this;
}
答案 0 :(得分:5)
您对运营商&lt;&lt;的明确专业化与声明的参数列表不匹配; T const& data
vs std::ofstream& out
。
这个编译在MSVC10中。
template<>
File& File::operator<< <std::ofstream> (const std::ofstream& out)
{
mOutPutFile << out;
return *this;
}
在函数参数之前添加注意const
。