โ Back to Polymorphism
Question 579
Overload a Method by Parameter Type
Overload a Method by Parameter Type
Overloads can also differ by parameter type. ThePrinterclass already hasDescribe(int)returningint: <value>. Add an overloadDescribe(string)that returnsstring: <value>. Do NOT write aMainmethod. The tester calls both versions, so the program prints: int: 7 string: hi
Expected Output:
int: 7 string: hi
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.