โ Back to Polymorphism
Question 562
Polymorphic Method Parameter
Polymorphic Method Parameter
TheSpeakerclass has a methodAnnounce(Animal a). Because the parameter type is the base classAnimal, the same method works for ANY subclass, anda.Sound()runs the subclass's version. CompleteAnnounceso it returnsAnimal says:followed bya.Sound(). Do NOT write aMainmethod. For aCow(whoseSound()returnsMoo) the program prints: Animal says: Moo
Expected Output:
Animal says: Moo
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.