โ Back to Classes
Question 45
Deep Copy Constructor
Deep Copy Constructor
Create a class NumberHolder with a private int* value. Requirements: 1. Constructor allocates memory and stores the input value 2. Destructor deletes the memory 3. Copy constructor performs a deep copy 4. getValue() returns *value 5. setValue(int) updates *value Do NOT write a main function.
Expected Output:
7
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.