Wednesday, September 18, 2019

c++ - When to use overloaded assignment operator?











When you require to define to your own assignment operator?



Answer



Generally, you'll need to define your own assignment operator under the same circumstances when you need to define your own copy constructor - i.e. 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.


No comments:

Post a Comment

hard drive - Leaving bad sectors in unformatted partition?

Laptop was acting really weird, and copy and seek times were really slow, so I decided to scan the hard drive surface. I have a couple hundr...