コピーコンストラクタはいつC++で呼び出されますか?
コピーコンストラクタは、以前に作成された同じクラスのオブジェクトでオブジェクトを初期化することによってオブジェクトを作成するコンストラクタです。コピーコンストラクタは次の目的で使用されます-
- 同じタイプの別のオブジェクトから1つのオブジェクトを初期化します。
- オブジェクトをコピーして、引数として関数に渡します。
- オブジェクトをコピーして、関数から返します。
コピーコンストラクターがクラスで定義されていない場合は、コンパイラー自体が定義します。クラスにポインタ変数があり、動的メモリ割り当てがある場合は、コピーコンストラクタが必要です。コピーコンストラクタの最も一般的な形式をここに示します-
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!
-
C++でのコピーコンストラクタと代入演算子の違い
この投稿では、C++のコピーコンストラクターと代入演算子の違いを理解します。 コピーコンストラクタ オーバーロードされたコンストラクターです。 新しいオブジェクトを既存のオブジェクトデータ/値で初期化します。 これは、既存のオブジェクトを使用して新しいオブジェクトを作成するときに使用されます。 これらのオブジェクトは両方とも別々のメモリ位置に保存されます。 クラス内にコピーコンストラクターが定義されていない場合、コンパイラーは独自にコピーコンストラクターを提供します。 代入演算子 オペレーターです。 あるオブジェクトの値を別のオブジェクトに割り当て
-
C++でのラインリフレクション
2D平面上にn個の点があるとすると、指定された点を対称的に反射するy軸に平行な線があるかどうかを確認する必要があります。つまり、指定された線上にすべての点を反映した後に線が存在するかどうかを確認する必要があります。元のポイントのセットは、反映されたポイントと同じです。 したがって、入力がpoints =[[1,1]、[-1,1]]のような場合 その場合、出力はtrueになります これを解決するには、次の手順に従います- 1つのセットを定義します。 n:=ポイントのサイズ minVal:=inf maxVal:=-inf 初期化i:=0の場合、i <