我有一个类模板,它是简化的,有点像这样:
template<typename T>
class A
{
protected:
T _data;
public:
A* operator%(const A &a2) const
{
A * ptr;
ptr = new A(this->_data % a2._data);
return ptr;
}
};
另一个继承自这个类的类:
class B : public A<double>
{
// ...
};
但是当我这样做时,编译器会说:
invalid operands of types ‘double’ and ‘const double’ to binary ‘operator%’
然后,我尝试将我operator%
的 for double和float专门化,因为 % 对于这些类型似乎是不可能的。我在A 类声明之后添加了以下代码。
template<>
A* A<double>::operator%(const A &a2) const
{
A * ptr;
ptr = new A((uint32_t)this->_data % (uint32_t)a2._data);
return ptr;
}
我得到这个错误,我真的不明白为什么......
In function `A<double>::operator%(A const&) const':
./include/A.hpp:102: multiple definition of `A<float>::operator%(A const&) const'
src/Processor.o:./include/A.hpp:102: first defined here