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?
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 |
|||||||||||||||||||||
|
|
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.) |
|||||||||||||
|
|
The law of the big three is as specified above. An easy example, in plain English, of the kind of problem it solves: 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. |
||||
|
|
|
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. |
|||
|
|
|
What does copying an object mean? There are a few ways you can copy objects--let's talk about the 2 kinds you're most likely referring to--deep copy and shallow copy. Since we're in an object-oriented language (or at least are assuming so), let's say you have a piece of memory allocated. Since it's an OO-language, we can easily refer to chunks of memory we allocate because they are usually primitive variables (ints, chars, bytes) or classes we defined that are made of our own types and primitives. So let's say we have a class of Car as follows:
A deep copy is if we declare an object and then create a completely separate copy of the object...we end up with 2 objects in 2 completely sets of memory.
Now let's do something strange. Let's say car2 is either programmed wrong or purposely meant to share the actual memory that car1 is made of. (It's usually a mistake to do this and in classes is usually the blanket it's discussed under.) Pretend that anytime you ask about car2, you're really resolving a pointer to car1's memory space...that's more or less what a shallow copy is.
So regardless of what language you're writing in, be very careful about what you mean when it comes to copying objects because most of the time you want a deep copy. What are the copy constructor and the copy assignment operator? I have already used them above. The copy constructor is called when you type code such as "Car car2 = car1;" Essentially if you declare a variable and assign it in one line, that's when the copy constructor is called. The assignment operator is what happens when you use an equal sign--"car2 = car1;". Notice car2 isn't declared in the same statement. The two chunks of code you write for these operations are likely very similar. In fact the typical design pattern has another function you call to set everything once you're satisfied the initial copy/assignment is legitimate--if you look at the longhand code I wrote, the functions are nearly identical. When do I need to declare them myself? If you are not writing code that is to be shared or for production in some manner, you really only need to declare them when you need them. You do need to be aware of what your program language does if you choose to use it 'by accident' and didn't make one--i.e. you get the compiler default. I rarely use copy constructors for instance, but assignment operator overrides are very common. Did you know you can override what addition, subtraction, etc. mean as well? How can I prevent my objects from being copied? Override all of the ways you're allowed to allocate memory for your object with a private function is a reasonable start. If you really don't want people copying them, you could make it public and alert the programmer by throwing an exception and also not copying the object. |
|||
|
|
|
Basically if you have a destructor (not the default destructor) it means that the class that you defined has some memory allocation. Suppose that the class is used outside by some client code or by you.
If MyClass has only some primitive typed members a default assignment operator would work but if it has some pointer members and objects that do not have assignment operators the result would be unpredictable. Therefore we can say that if there is something to delete in destructor of a class, we might need a deep copy operator which means we should provide a copy ctor and assignment operator. |
|||
|
|
c++-faqtag wiki before you vote to close. – sbi Nov 13 '10 at 14:06