CJCoding With Joseph

Private Inheritance Basics

With private inheritance, the base class's public interface becomes PRIVATE in the derived class. It models "implemented in terms of" rather than "is-a".

Base class Timer (already written) has a public int ticks() const returning 10.

Create a class Stopwatch that inherits from Timer using PRIVATE inheritance, and expose the behavior through a public method int elapsed() const that returns ticks().

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.