So I'm having issues overloading the assignment operator when working with templates. Basically, I'm taking a custom resizable array class, and that's being inherited by a different array class that lacks the ability to be resized. Anyway, I have two equality operators, one for dealing with arrays of the same size, and one for dealing with arrays of different sizes, so long as the type is the same.
Here's the code for the operators:
// operator =
//
template <typename T, size_t N>
const Fixed_Array <T, N> & Fixed_Array <T, N>::operator = (const Fixed_Array <T, N> & rhs)
{
for(size_t x = 0; x < N; x++)
{
this->set(x, rhs[x]);
}
return *this;
}
//
// operator =
//
template <typename T, size_t N>
template <size_t M>
const Fixed_Array <T, N> & Fixed_Array <T, N>::operator = (const Fixed_Array <T, M> & rhs)
{
this->resize(M);
for(size_t x = 0; x < M; x++)
{
this->set(x, rhs[x]);
}
return *this;
}
And here's what I'm using to create and assign:
Fixed_Array<char, 10> * fa1 = new Fixed_Array<char, 10>();
Fixed_Array<char, 20> * fa2 = new Fixed_Array<char, 20>();
fa1 = fa1; //works
fa1 = fa2; //causes compiler to freak out
The error message basically is saying that I can't do this with 10 and 20; it's not picking up my second assignment operator with the template .
Any suggestions?
Fixed_Array<char, 10> fa1;(and similarly forfa2). Then you could in fact usefa1 = fa2. It's likeint: you wouldn't be doingint* p = new int;without a very good reason, you'd just be usingint i;. – Luc Danton Feb 24 '12 at 3:46