Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider the following object: class Z { public: int size; int *n; Z(int a=10) {n = new int[a]; size = a; } }; (a)[5 points]
Consider the following object:
class Z {
public:
int size;
int *n;
Z(int a=10) {n = new int[a]; size = a;}
};
(a)[5 points] What happens when this class is copied with the default copy constructor?
(b)[10 points] Implement a copy constructor for Z that makes a deep copy of the object.
(c)[5 points] Is there another member function we should also implement with the copy constructor to ensure the object is used properly? If so, implement it as well.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started