When to use overloaded assignment operator?

Possible Duplicate:
What is The Rule of Three?

When you require to define to your own assignment operator?


Generally, you'll need to define your own assignment operator under the same circumstances when you need to define your own copy constructor - ie when a default copy won't cut it. This happens in cases when your object manages dynamically allocated memory or other resources which need to be specially copied.

For example, if you have a class which manages a pointer that points to dynamically allocated memory, the default assignment operator will simply copy the pointer. Generally, this is not what you want - you want each object instance to have its own internal copy of the allocated data, and so you'll need a special assignment operator that allocates its own memory and performs a copy. This is, for example, what std::vector needs to do when copied or assigned.

链接地址: http://www.djcxy.com/p/73176.html

上一篇: 当使用析构函数时,释放或损坏

下一篇: 何时使用重载赋值运算符?