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?

link|improve this question

22  
@Armen: Yes, stack overflow encourages this: "It's also perfectly fine to ask and answer your own question, as long as you pretend you're on Jeopardy: phrase it in the form of a question." – FredOverflow Nov 13 '10 at 13:32
12  
@FredOverflow: However, when coming forth with a pre-prepared answer several pages long the minute you post your question, making the answer CW might prevent others from accusing you to try to harvest rep. – sbi Nov 13 '10 at 13:37
30  
@sbi: And what's wrong with harvesting rep? If a person has given a good answer to his own question let people vote him up and give him rep. What's wrong with this? Sometimes I feel there's so much politics in SO ... :( – Armen Tsirunyan Nov 13 '10 at 13:42
9  
Please read this whole thread and the c++-faq tag wiki before you vote to close. – sbi Nov 13 '10 at 14:06
9  
It might still be worthwhile to wait half an hour before posting your own answer though. Just to invite others to post their answers as well. – jalf Nov 13 '10 at 14:27
show 19 more comments
feedback

5 Answers

up vote 170 down vote accepted

Introduction

C++ 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:

class person
{
    std::string name;
    int age;

public:

    person(const std::string& name, int age) : name(name), age(age)
    {
    }
};

int main()
{
    person a("Bjarne Stroustrup", 60);
    person b(a);   // What happens here?
    b = a;         // And here?
}

(If you are puzzled by the name(name), age(age) part, this is called a member initializer list.)

Special member functions

What does it mean to copy a person object? The main function shows two distinct copying scenarios. The initialization person b(a); is performed by the copy constructor. Its job is to construct a fresh object based on the state of an existing object. The assignment b = a is performed by the copy assignment operator. Its job is generally a little more complicated, because the target object is already in some valid state that needs to be dealt with.

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:

The [...] copy constructor and copy assignment operator, [...] and destructor are special member functions. [ Note: The implementation will implicitly declare these member functions for some class types when the program does not explicitly declare them. The implementation will implicitly define them if they are used. [...] end note ] [n3126.pdf section 12 §1]

By default, copying an object means copying its members:

The implicitly-defined copy constructor for a non-union class X performs a memberwise copy of its subobjects. [n3126.pdf section 12.8 §16]

The implicitly-defined copy assignment operator for a non-union class X performs memberwise copy assignment of its subobjects. [n3126.pdf section 12.8 §30]

Implicit definitions

The implicitly-defined special member functions for person look like this:

    // 1. copy constructor
    person(const person& that) : name(that.name), age(that.age)
    {
    }

    // 2. copy assignment operator
    person& operator=(const person& that)
    {
        name = that.name;
        age = that.age;
        return *this;
    }

    // 3. destructor
    ~person()
    {
    }

Memberwise copying is exactly what we want in this case: name and age are copied, so we get a self-contained, independent person object. The implicitly-defined destructor is always empty. This is also fine in this case since we did not acquire any resources in the constructor. The members' destructors are implicitly called after the person destructor is finished:

After executing the body of the destructor and destroying any automatic objects allocated within the body, a destructor for class X calls the destructors for X's direct [...] members [n3126.pdf 12.4 §6]

Managing resources

So 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 std::string, and programmers were in love with pointers. The person class might have looked like this:

class person
{
    char* name;
    int age;

public:

    // the constructor acquires a resource:
    // in this case, dynamic memory obtained via new[]
    person(const char* the_name, int the_age)
    {
        name = new char[strlen(the_name) + 1];
        strcpy(name, the_name);
        age = the_age;
    }

    // the destructor must release this resource via delete[]
    ~person()
    {
        delete[] name;
    }
};

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 name member merely copies a pointer, not the character array it points to! This has several unpleasant effects:

  1. Changes via a can be observed via b.
  2. Once b is destroyed, a.name is a dangling pointer.
  3. If a is destroyed, deleting the dangling pointer yields undefined behavior.
  4. Since the assignment does not take into account what name pointed to before the assignment, sooner or later you will get memory leaks all over the place.

Explicit definitions

Since 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:

    // 1. copy constructor
    person(const person& that)
    {
        name = new char[strlen(that.name) + 1];
        strcpy(name, that.name);
        age = that.age;
    }

    // 2. copy assignment operator
    person& operator=(const person& that)
    {
        if (this != &that)
        {
            delete[] name;
            // This is a dangerous point in the flow of execution!
            // We have temporarily invalidated the class invariants,
            // and the next statement might throw an exception,
            // leaving the object in an invalid state :(
            name = new char[strlen(that.name) + 1];
            strcpy(name, that.name);
            age = that.age;
        }
        return *this;
    }

Note the difference between initialization and assignment: we must tear down the old state before assigning to name to prevent memory leaks. Also, we have to protect against self-assignment of the form x = x. Without that check, delete[] name would delete the array containing the source string, because when you write x = x, both this->name and that.name contain the same pointer.

Exception safety

Unfortunately, this solution will fail if new char[...] throws an exception due to memory exhaustion. One possible solution is to introduce a local variable and reorder the statements:

    // 2. copy assignment operator
    person& operator=(const person& that)
    {
        char* local_name = new char[strlen(that.name) + 1];
        // If the above statement throws,
        // the object is still in the same state as before.
        // None of the following statements will throw an exception :)
        strcpy(local_name, that.name);
        delete[] name;
        name = local_name;
        age = that.age;
        return *this;
    }

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 resources

Some 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 private without giving a definition:

private:

    person(const person& that);
    person& operator=(const person& that);

Alternatively, you can inherit from boost::noncopyable or declare them as deleted (C++0x):

    person(const person& that) = delete;
    person& operator=(const person& that) = delete;

The rule of three

Sometimes 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:

If you need to explicitly declare either the destructor, copy constructor or copy assignment operator yourself, you probably need to explicitly declare all three of them.

(Unfortunately, this "rule" is not enforced by the C++ standard or any compiler I am aware of.)

Advice

Most of the time, you do not need to manage a resource yourself, because an existing class such as std::string already does it for you. Just compare the simple code using a std::string member to the convoluted and error-prone alternative using a char* and you should be convinced. As long as you stay away from raw pointer members, the rule of three is unlikely to concern your own code.

link|improve this answer
1  
I'd just change "define" to "define or declare private", as there are classes (resource handles, mutexes... mutices?) for which no semantics of "copying" shall exist. Then just the destructor is sufficient and both copy constructor and operator= need to be simply declared as private to avoid accidental copying. – Kos Nov 13 '10 at 13:31
1  
Fred, I'd feel better about my up-vote if (A) you wouldn't spell out badly implemented assignment in copyable code and add a note saying it's wrong and look elsewhere in the fineprint; either use c&s in the code or just skip over implementing all these members (B) you would shorten the first half, which has little to do with the RoT; (C) you would discuss the introduction of move semantics and what that means for the RoT. – sbi Nov 13 '10 at 14:00
1  
@sbi : This question is tagged c++-faq so highly reputed member such as yourself should feel free to correct the original post(in case if it contains misleading infomation)by editing it instead of just giving a comment asking the author to correct his post. :-) – Prasoon Saurav Nov 13 '10 at 14:17
2  
But then the post should be made C/W, I think. I like that you keep the terms mostly accurate (i.e that you say "copy assignment operator", and that you don't tap into the common trap that assignment couldn't imply a copy). – Johannes Schaub - litb Nov 13 '10 at 14:21
2  
Also, I may have overread it, but you do not mention that the copy assingment operator should check for identity before doing anything. – Björn Pollex Nov 13 '10 at 14:34
show 9 more comments
feedback

The Rule of Three is a rule of thumb for C++, basically saying

If your class needs either

  • a copy constructor,
  • an assignment operator,
  • or a destructor,

then it is likely to need all three of them.

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 private.

(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.)

link|improve this answer
Another solution to prevent copying is to inherit (privately) from a class that cannot be copied (like boost::noncopyable). It can also be much clearer. I think that C++0x and the possibility to "delete" functions could help here, but forgot the syntax :/ – Matthieu M. Nov 13 '10 at 16:33
@Matthieu: Yep, that works, too. But unless noncopyable is part of the std lib, I don't consider it much of an improvement. (Oh, and if you forgot the deletion syntax, you forgot mor ethan I ever knew. :)) – sbi Nov 13 '10 at 17:20
1  
Yay a link to a Wikipedia article I started :) – Motti Nov 13 '10 at 18:36
@Motti: That's been linked to here a lot. – sbi Nov 13 '10 at 19:39
I hadn't noticed – Motti Nov 13 '10 at 19:50
feedback

Related: The Law of The Big Two

link|improve this answer
This is a comment. To be an answer it should at least summarize external links. – Mooing Duck May 14 at 17:26
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.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.