Copy constructor in C++ A copy constructor is a method of a class which initializes an object using another object of the same class . A copy constructor can be called in various scenarios. For example: In the case where an object of a class is returned by value.