โ Back to Inheritance
Question 444
Private Inheritance Basics
Private Inheritance Basics
Withprivateinheritance, the base class's public interface becomes PRIVATE in the derived class. It models "implemented in terms of" rather than "is-a". Base classTimer(already written) has a publicint ticks() constreturning 10. Create a classStopwatchthat inherits fromTimerusing PRIVATE inheritance, and expose the behavior through a public methodint elapsed() constthat returnsticks(). The program prints: 10 Do NOT write a main function.
Expected Output:
10
Topics:
Inheritance
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.