Scala program to implement method overloading based on the different number of arguments
belongs to collection: Scala Classes & Objects Programs
All Answers
total answers (1)
belongs to collection: Scala Classes & Objects Programs
total answers (1)
Program/Source Code:
The source code to implement method overloading based on the different number of arguments is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
In the above program, we used an object-oriented approach to create the program. And, we created an object Sample.
And, we created a class Calc. In Calc class, we implemented method overloading by creating two AddNumbers() methods with different numbers of arguments. The odd numbers() method is used to add specified numbers of arguments and print the result on the console screen.
In the main() function, we created an object of the Calc class and called both methods with arguments, and printed the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer