โ Back to Polymorphism
Question 560
Overload By Parameter Type
Overload By Parameter Type
TheFormatterclass has aShow(int)method. Add an overloadShow(double)so the correct one runs based on the argument's type. This is compile-time (overload) polymorphism. Do NOT write aMainmethod. The tester printsShow(5)thenShow(2.5): int: 5 double: 2.5
Expected Output:
int: 5 double: 2.5
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.