โ Back to Polymorphism
Question 578
Overload a Method by Argument Count
Overload a Method by Argument Count
Method overloading (compile-time polymorphism) lets one method name have several versions with different parameter lists. TheCalculatorclass already hasAdd(int, int). Add an overloadAdd(int, int, int)that returns the sum of all three numbers. Do NOT write aMainmethod. The tester calls both versions, so the program prints: 5 9
Expected Output:
5 9
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.