โ Back to Polymorphism
Question 551
Override a Virtual Method
Override a Virtual Method
The base classAnimalhas avirtualmethodSpeak. Override it in theDogclass so aDogprints its own message even when it is stored in anAnimalvariable. Do NOT write aMainmethod. The tester runsAnimal a = new Dog(); a.Speak();and the program prints: The dog barks
Expected Output:
The dog barks
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.