Use cases of a copy assignment operator that returns const

58 Views Asked by At

I have seen code that defines a copy assignment operator to return a const reference, e.g.

const MyClass & operator= (const MyClass &);

I'm confused about the intention, and how such operator can be used.

For example, let's say I use it to do something like a = b (a and b are objects of MyClass). Wouldn't that require a to have been declared as const, and if so, wouldn't that mean that I cannot modify a? (i.e. what's the point?)

0

There are 0 best solutions below