CJCoding With Joseph

Overload a Method by Parameter Type

Overloads can also differ by parameter type. The Printer class already has Describe(int) returning int: <value>. Add an overload Describe(string) that returns string: <value>. Do NOT write a Main method.

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.