Copy Constructor
The Big Three
Class with Copy Constructor
  1. #ifndef V_H
  2. #define V_H
  3. class V
  4. {
  5. private:
  6. int size;
  7. int *array;
  8. public:
  9. //constructor
  10. V(int s):size(s)
  11. {
  12. array = new int[size];
  13. for(int i = 0; i < size; i++)
  14. array[i] = 10*i;
  15. }
  16.  
  17. //copy constructor
  18. V(const V &right):size(right.size), array(size?new int[size]:nullptr)
  19. {
  20. std::cout<<"Copy Constructor ..."<<std::endl;
  21. std::copy(right.array, right.array+size, array);
  22. std::cout<<"End Constructor ..."<<std::endl;
  23. }
  24.  
  25. int *getAddress() const {return array;}
  26.  
  27. void display() const
  28. {
  29. for(int i = 0; i < size; i++)
  30. std::cout<<array[i]<<" ";
  31. std::cout<<std::endl;
  32. }
  33.  
  34. //copy assignment
  35. const V& operator=(const V &right)
  36. {
  37. std::cout<<"Copy Assignment ..."<<std::endl;
  38. V temp(right);
  39. std::swap(size, temp.size);
  40. std::swap(array, temp.array);
  41. return *this;
  42. }
  43.  
  44. ~V()
  45. {
  46. std::cout<<"Destructor ..."<<std::endl;
  47. delete [] array;
  48. array = 0;
  49. size = 0;
  50. }
  51. };
  52. #endif
When you declare a new object and initialize it with another object
  1. #include <iostream>
  2. #include "V.h"
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. V v1(10);
  7. V v2(v1);
  8. V v3 = v1;
  9.  
  10. v2.display();
  11. v3.display();
  12.  
  13. return 0;
  14. }
When pass an object to function by value
  1. #include <iostream>
  2. #include "V.h"
  3.  
  4. void getObject(V v)
  5. {
  6. v.display();
  7. }
  8.  
  9. int main(int argc, char *argv[])
  10. {
  11. V v(10);
  12.  
  13. std::cout<<"Before calling function ..."<<std::endl;
  14. getObject(v);
  15. std::cout<<"After calling function ..."<<std::endl;
  16.  
  17. return 0;
  18. }
When an object is constructed based on another object of the same class
  1. #ifndef V_H
  2. #define V_H
  3. class V
  4. {
  5. private:
  6. int size;
  7. int *array;
  8. public:
  9. //constructor
  10. V(int s):size(s)
  11. {
  12. array = new int[size];
  13. for(int i = 0; i < size; i++)
  14. array[i] = 10*i;
  15. }
  16.  
  17. V(int s, V right):size(s), array(size?new int [size]:nullptr)
  18. {
  19. std::cout<<"Second Constructor ..."<<std::endl;
  20. std::copy(right.array, right.array+size, array);
  21. }
  22.  
  23. //copy constructor
  24. V(const V &right):size(right.size), array(size?new int[size]:nullptr)
  25. {
  26. std::cout<<"Copy Constructor ..."<<std::endl;
  27. std::copy(right.array, right.array+size, array);
  28. std::cout<<"End Constructor ..."<<std::endl;
  29. }
  30.  
  31. int *getAddress() const {return array;}
  32.  
  33. void display() const
  34. {
  35. for(int i = 0; i < size; i++)
  36. std::cout<<array[i]<<" ";
  37. std::cout<<std::endl;
  38. }
  39.  
  40. //copy assignment
  41. const V& operator=(const V &right)
  42. {
  43. std::cout<<"Copy Assignment ..."<<std::endl;
  44. V temp(right);
  45. std::swap(size, temp.size);
  46. std::swap(array, temp.array);
  47. return *this;
  48. }
  49.  
  50. ~V()
  51. {
  52. std::cout<<"Destructor ..."<<std::endl;
  53. delete [] array;
  54. array = 0;
  55. size = 0;
  56. }
  57. };
  58. #endif
  1. #include <iostream>
  2. #include "V.h"
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. V v(10);
  7. V v2(20, v);
  8.  
  9. v2.display();
  10.  
  11. return 0;
  12. }
When explicity invoked in another constructor's initialization list
When an object is a data member of another class for which the compiler has generated its own copy constructor
  1. #ifndef V_H
  2. #define V_H
  3. class V
  4. {
  5. private:
  6. int size;
  7. int *array;
  8. public:
  9. //constructor
  10. V()
  11. {
  12. std::cout<<"Default Constructor ..."<<std::endl;
  13. size = 0;
  14. array = 0;
  15. }
  16.  
  17. V(int s):size(s)
  18. {
  19. array = new int[size];
  20. for(int i = 0; i < size; i++)
  21. array[i] = 10*i;
  22. }
  23.  
  24. //copy constructor
  25. V(const V &right):size(right.size), array(size?new int[size]:nullptr)
  26. {
  27. std::cout<<"Copy Constructor ..."<<std::endl;
  28. std::copy(right.array, right.array+size, array);
  29. std::cout<<"End Constructor ..."<<std::endl;
  30. }
  31.  
  32. int *getAddress() const {return array;}
  33.  
  34. void display() const
  35. {
  36. for(int i = 0; i < size; i++)
  37. std::cout<<array[i]<<" ";
  38. std::cout<<std::endl;
  39. }
  40.  
  41. //copy assignment
  42. const V& operator=(const V &right)
  43. {
  44. std::cout<<"Copy Assignment ..."<<std::endl;
  45. V temp(right);
  46. std::swap(size, temp.size);
  47. std::swap(array, temp.array);
  48. return *this;
  49. }
  50.  
  51. ~V()
  52. {
  53. std::cout<<"Destructor ..."<<std::endl;
  54. delete [] array;
  55. array = 0;
  56. size = 0;
  57. }
  58. };
  59. #endif
  1. #ifndef A_H
  2. #define A_H
  3. #include <iostream>
  4. #include <string>
  5. #include "V.h"
  6.  
  7. class A
  8. {
  9. private:
  10. std::string name;
  11. V array;
  12. public:
  13. A(std::string n, V v)
  14. {
  15. std::cout<<"--------------"<<std::endl;
  16. name = n;
  17. array = v;
  18. std::cout<<"--------------"<<std::endl;
  19. }
  20. };
  21. #endif
  1. #include <iostream>
  2. #include "A.h"
  3. #include "V.h"
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7. V v(10);
  8. A a("Array", v);
  9.  
  10. return 0;
  11. }
Reference
  • geeksforgeeks.org