我在为模板类重载 operator<< 时遇到问题。我正在使用 Visual Studio 2010,这是我的代码。
#ifndef _FINITEFIELD
#define _FINITEFIELD
#include<iostream>
namespace Polyff{
template <class T, T& n> class FiniteField;
template <class T, T& n> std::ostream& operator<< (std::ostream&, const FiniteField<T,n>&);
template <class T, T& n> class FiniteField {
public:
//some other functions
private:
friend std::ostream& operator<< <T,n>(std::ostream& out, const FiniteField<T,n>& obj);
T _val;
};
template <class T, T& n>
std::ostream& operator<< (std::ostream& out, const FiniteField<T,n>& f) {
return out<<f._val;
}
//some other definitions
}
#endif
主要我只有
#include"FiniteField.h"
#include"Integer.h"
#include<iostream>
using std::cout;
using namespace Polyff;
Integer N(5);
int main () {
FiniteField<Integer, N> f1;
cout<< f1;
}
whereInteger
只是int
我需要的一些特殊功能的包装。
但是,当我编译上面的代码时,我得到了错误 C2679,它说binary '<<' : no operator found which takes a right-hand operand of type 'Polyff::FiniteField<T,n>' (or there is no acceptable conversion)
我还尝试删除朋友声明中的参数,因此代码变为:
friend std::ostream& operator<< <> (std::ostream& out, const FiniteField<T,n>& obj);
但这会产生另一个错误:C2785:'std::ostream &Polyff::operator <<(std::ostream &,const Polyff::FiniteField<T,n> &)' and '<Unknown>' have different return types
所以我想知道我应该如何更改代码以便编译,为什么?谢谢!
------------------------- 编辑于 2012.12.31 -------------------- --------
代码现在用 g++ 编译。这是github存储库。