What does copying an object mean? What are the copy constructor and the copy assignment operator? When do I need to declare them myself? How can I prevent my objects from being copied?
|
show 19 more comments
feedback
|
IntroductionC++ treats variables of user-defined types with value semantics. This means that objects are implicitly copied in various contexts, and we should understand what "copying an object" actually means. Let us consider a simple example:
(If you are puzzled by the Special member functionsWhat does it mean to copy a Since we declared neither the copy constructor nor the assignment operator (nor the destructor) ourselves, these are implicitly defined for us. Quote from the standard:
By default, copying an object means copying its members:
Implicit definitionsThe implicitly-defined special member functions for
Memberwise copying is exactly what we want in this case:
Managing resourcesSo when should we declare those special member functions explicitly? When our class manages a resource, that is, when an object of the class is responsible for that resource. That usually means the resource is acquired in the constructor (or passed into the constructor) and released in the destructor. Let us go back in time to pre-standard C++.
There was no such thing as
Even today, people still write classes in this style and get into trouble:
"I pushed a person into a vector and now I get crazy memory errors!"
Remember that by default, copying an object means copying its members,
but copying the
Explicit definitionsSince memberwise copying does not have the desired effect, we must define the copy constructor and the copy assignment operator explicitly to make deep copies of the character array:
Note the difference between initialization and assignment:
we must tear down the old state before assigning to Exception safetyUnfortunately, this solution will fail if
This also takes care of self-assignment without an explicit check. An even more robust solution to this problem is the copy-and-swap idiom, but I will not go into the details of exception safety here. I only mentioned exceptions to make the following point: Writing classes that manage resources is hard. Noncopyable resourcesSome resources cannot or should not be copied, such as file handles or mutexes.
In that case, simply declare the copy constructor and copy assignment operator as
Alternatively, you can inherit from
The rule of threeSometimes you need to implement a class that manages a resource. (Never manage multiple resources in a single class, this will only lead to pain.) In that case, remember the rule of three:
(Unfortunately, this "rule" is not enforced by the C++ standard or any compiler I am aware of.) AdviceMost of the time, you do not need to manage a resource yourself,
because an existing class such as | |||||||||||||||||||||
feedback
|
|
The Rule of Three is a rule of thumb for C++, basically saying
The reasons for this is that all three of them are usually used to manage a resource, and if your class manages a resource, it usually needs to manage copying as well as freeing. If there is no good semantic for copying the resource you class manages, then consider to forbid copying by declaring (not defining) the copy constructor and assignment operator as (Note that the forthcoming new version of the C++ standard (currently usually referred to as C++0x or C++1x) adds move semantics to C++, which will likely change the Rule of Three. However, I know too little about this to write a C++1x section about the Rule of Three.) | |||||||||||||
feedback
|
|
Related: The Law of The Big Two | |||
feedback
|
|
The rule of three (also known as the Law of The Big Three or The Big Three) is a rule of thumb in C++ that claims that if a class defines one of the following it should probably explicitly define all three[1]: -destructor -copy constructor -assignment operator These three functions are special member functions. If one of these functions is used without first being declared by the programmer it will be implicitly implemented by the compiler with the default semantics of performing the said operation on all the members of the class. Destructor - Destruct all the object's members Copy constructor - Construct all the object's members from the equivalent members in the copy constructor's parameter Assignment operator - Assign all the object's members from the equivalent members in the assignment operator's parameter The Rule of Three claims that if one of these had to be defined by the programmer, it means that the compiler-generated version does not fit the needs of the class in one case and it will probably not fit in the other cases either. | |||
|
feedback
|
|
The law of the big three is as specified above. An easy example, in plain English, of the kind of problem is solves is: You allocated memory in your constructor and so you need to write a destructor to delete it. Otherwise you will cause a memory leak. You might think that this is job done. The problem will be if a copy is made of your object then the copy will point to the same memory as the original object. Once one of these deletes the memory in it's destructor the other will have a pointer to invalid memory (this is called a dangling pointer) when it tries to use it things are going to get hairy. Therefore you write a copy constructor so that it allocates new objects their own pieces of memory to destroy. The principle extends to other resources and the assignment operator. | |||
|
feedback
|
c++-faqtag wiki before you vote to close. – sbi Nov 13 '10 at 14:06