यहां हम देखेंगे कि C++ में कॉपी कंस्ट्रक्टर्स को कैसे लागू किया जाता है। इस पर चर्चा करने से पहले हमें पता होना चाहिए कि कॉपी कंस्ट्रक्टर क्या है।
कॉपी कंस्ट्रक्टर एक कंस्ट्रक्टर है जो किसी ऑब्जेक्ट को उसी क्लास के ऑब्जेक्ट के साथ इनिशियलाइज़ करके बनाता है, जिसे पहले बनाया गया था। कॉपी कंस्ट्रक्टर का उपयोग −
. के लिए किया जाता है- एक ही प्रकार के दूसरे ऑब्जेक्ट से इनिशियलाइज़ करें।
- किसी ऑब्जेक्ट को किसी फ़ंक्शन के तर्क के रूप में पास करने के लिए उसकी प्रतिलिपि बनाएँ।
- किसी ऑब्जेक्ट को किसी फ़ंक्शन से वापस करने के लिए उसकी प्रतिलिपि बनाएँ।
यदि एक कॉपी कंस्ट्रक्टर को किसी वर्ग में परिभाषित नहीं किया गया है, तो कंपाइलर स्वयं एक को परिभाषित करता है। यदि कक्षा में सूचक चर हैं और कुछ गतिशील स्मृति आवंटन हैं, तो एक प्रतिलिपि बनाने वाला होना आवश्यक है। कॉपी कंस्ट्रक्टर का सबसे सामान्य रूप यहाँ दिखाया गया है -
classname (const classname &obj) { // body of constructor }
यहां, obj किसी ऑब्जेक्ट का संदर्भ है जिसका उपयोग किसी अन्य ऑब्जेक्ट को प्रारंभ करने के लिए किया जा रहा है।
उदाहरण
#include <iostream> using namespace std; class Line { public: int getLength( void ); Line( int len ); // simple constructor Line( const Line &obj); // copy constructor ~Line(); // destructor private: int *ptr; }; // Member functions definitions including constructor Line::Line(int len) { cout << "Normal constructor allocating ptr" << endl; // allocate memory for the pointer; ptr = new int; *ptr = len; } Line::Line(const Line &obj) { cout << "Copy constructor allocating ptr." << endl; ptr = new int; *ptr = *obj.ptr; // copy the value } Line::~Line(void) { cout << "Freeing memory!" << endl; delete ptr; } int Line::getLength( void ) { return *ptr; } void display(Line obj) { cout << "Length of line : " << obj.getLength() <<endl; } // Main function for the program int main() { Line line(10); display(line); return 0; }
आउटपुट
Normal constructor allocating ptr Copy constructor allocating ptr. Length of line : 10 Freeing memory! Freeing memory!
आइए हम एक ही उदाहरण देखें लेकिन एक ही प्रकार की मौजूदा वस्तु का उपयोग करके दूसरी वस्तु बनाने के लिए एक छोटे से बदलाव के साथ -
उदाहरण
#include <iostream> using namespace std; class Line { public: int getLength( void ); Line( int len ); // simple constructor Line( const Line &obj); // copy constructor ~Line(); // destructor private: int *ptr; }; // Member functions definitions including constructor Line::Line(int len) { cout << "Normal constructor allocating ptr" << endl; // allocate memory for the pointer; ptr = new int; *ptr = len; } Line::Line(const Line &obj) { cout << "Copy constructor allocating ptr." << endl; ptr = new int; *ptr = *obj.ptr; // copy the value } Line::~Line(void) { cout << "Freeing memory!" << endl; delete ptr; } int Line::getLength( void ) { return *ptr; } void display(Line obj) { cout << "Length of line : " << obj.getLength() <<endl; } // Main function for the program int main() { Line line1(10); Line line2 = line1; // This also calls copy constructor display(line1); display(line2); return 0; }
आउटपुट
Normal constructor allocating ptr Copy constructor allocating ptr. Copy constructor allocating ptr. Length of line : 10 Freeing memory! Copy constructor allocating ptr. Length of line : 10 Freeing memory! Freeing memory! Freeing memory!