โ Back to Inheritance
Question 522
Abstract Name Property
Abstract Name Property
An abstract class can declare an abstract property that every subclass must supply.Animaldeclares an abstract read-only propertyNameand a concreteAnnounce()that printsI am afollowed byName. OverrideNameinLionso its getter returnsLion. Do NOT write aMainmethod. When the tester callsAnnounce()on aLion, the program prints: I am a Lion
Expected Output:
I am a Lion
Topics:
Inheritance
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.