Question: class Array { private: int *value; int size; public: Array(int size) { data = new int[size]; } // any other methods you want/need }; Can
class Array {
private:
int *value;
int size;
public:
Array(int size) { data = new int[size]; }
// any other methods you want/need
};
Can you please help me implement a copy constructor for the above class so that the below expression works, the expression is in the form of array2 = array1.
Array arr2 = arr1 // arr1 is an existing Array instance.
Thank you.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
