โ Back to Polymorphism
Question 569
Implement Two Interfaces
Implement Two Interfaces
A class can implement more than one interface. MakeDuckimplement BOTHIWalkandISwim:Walk()returnsDuck walksandSwim()returnsDuck swims. The same object can then be used through either interface. Do NOT write aMainmethod. The tester callsWalk()through anIWalkandSwim()through anISwim: Duck walks Duck swims
Expected Output:
Duck walks Duck swims
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.