โ Back to Polymorphism
Question 566
Iterate Interface Implementers
Iterate Interface Implementers
The interfaceIShapeis implemented byCircleandTriangle, each returning a differentDescribe()string. CompleteShapePrinter.PrintAllso it printsDescribe()for every shape in the array, one per line. The same loop handles all implementers. Do NOT write aMainmethod. For aCirclethen aTrianglethe program prints: I am a circle I am a triangle
Expected Output:
I am a circle I am a triangle
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.