โ Back to Polymorphism
Question 594
Explicit Interface Implementation
Explicit Interface Implementation
When two interfaces declare a method with the SAME name, a class can implement each one explicitly so they do not collide. Explicit implementations use the formReturnType IInterface.Method()with no access modifier, and are only reachable through a reference of that interface type. MakePersonimplement bothIEnglish.Greet()returningHelloandISpanish.Greet()returningHola. Do NOT write aMainmethod. The tester calls each through the matching interface reference, so the program prints: Hello Hola
Expected Output:
Hello Hola
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.