โ Back to Polymorphism
Question 581
Implement an Interface Method
Implement an Interface Method
An interface lists methods a class promises to provide. TheIShapeinterface declaresstring Name(). MakeTriangleimplementName()so it returnstriangle. Interface members are implicitlypublic, so nooverridekeyword is needed. Do NOT write aMainmethod. The program prints: triangle
Expected Output:
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.