I stumbled upon this piece of code in the openCV source ( cxoperations.hpp, line 1134, in the definition of the Vector class ):
Vector(const Vector& d, const Range& r)
{
if( r == Range::all() )
r = Range(0, d.size());
// some more stuff...
}
Note that the Vector class has no data member called r (and indeed, the identifier r only occurs in one more place in the entire class definition, as a parameter in another method). So apparently, that right there is an assignment to a const reference.
I tried to reproduce a minimal example:
#include <iostream>
class Foo
{
public:
int _a;
Foo(int a) : _a(a) {}
};
int main()
{
Foo x(0);
const Foo& y = x;
printf("%d\n", y._a);
y = Foo(3);
printf("%d\n", y._a);
}
This, of course, fails to compile: g++ gives the error
test.cpp:15: error: passing `const Foo' as `this' argument of `Foo& Foo::operator=(const Foo&)' discards qualifiers
The only way I got it to work is by overriding operator= like this:
#include <iostream>
class Foo
{
public:
int _a;
Foo(int a) : _a(a) {}
Foo& operator=(Foo rhs) const
{
Foo& tmp = const_cast<Foo&>(*this);
tmp._a = rhs._a;
return const_cast<Foo&>(*this);
}
};
int main()
{
Foo x(0);
const Foo& y = x;
printf("%d\n", y._a);
y = Foo(3);
printf("%d\n", y._a);
}
This compiles, and prints "0 3" as expected. The problem here is that
- anyone who writes code like that should have their hands cut off
- in the openCV source above, there is no redefinition of
operator=that takesRangeparameters (Range-related functions are just above the definition ofVector, starting at line 1033)
Obviously I'm missing something, since the openCV source compiles. My question is, what is really going in in the r = Range(0, d.size()); line that makes it legal?
Range::operatorfunctions defined just before theVectorclass, thoughoperator=isn't one of them. Presumably, it's the implicitly defined default operator. – suszterpatt Dec 1 '10 at 21:08