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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!