โ Back to Polymorphism
Question 591
Chained Overrides Across Three Levels
Chained Overrides Across Three Levels
Overrides can build on each other level by level usingbase.A.Name()returnsA.Boverrides it to returnbase.Name() + "B". OverrideName()inCso it returnsbase.Name() + "C". Do NOT write aMainmethod. The tester stores aCin anAvariable and printsName(). Because each level appends to the one below, the program prints: ABC
Expected Output:
ABC
Topics:
Polymorphism
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.