โ Back to Inheritance
Question 439
Sharing a Static Constant Through Inheritance
Sharing a Static Constant Through Inheritance
Astaticmember of a base class is shared by the base and every derived class. Base classConfigdefines a publicstatic const int MAX_USERS = 100;. Create a derived classServerwith a methodint capacity() constthat returns the inheritedMAX_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.