โ Back to Polymorphism
Question 592
Program to an Interface
Program to an Interface
A method that accepts an interface type works with any class that implements it. TheIGreetinginterface declaresstring Message().FormalandCasualalready implement it. InWelcomer, finishWelcome(IGreeting g)so it returns the greeting'sMessage()followed by, guest. Do NOT write aMainmethod. For aFormalgreeting the program prints: Good day, guest For aCasualgreeting it prints: Hey, guest
Expected Output:
Good day, guest
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.