CJCoding With Joseph

Sharing a Static Constant Through Inheritance

A static member of a base class is shared by the base and every derived class.

Base class Config defines a public static const int MAX_USERS = 100;.

Create a derived class Server with a method int capacity() const that returns the inherited MAX_USERS.

The program prints:
100

Do NOT write a main function.

Expected Output:

100
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.