Q:

Scala program to implement method overloading based on different types of arguments

belongs to collection: Scala Classes & Objects Programs

0

Here, we will create a class and implement method overloading by creating methods with different types of arguments to add specified numbers and print the result on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to implement method overloading based on different types of arguments is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to implement method overloading 
// based on different types of arguments

class Calc {
  def AddNumbers(num1: Int, num2: Int) {
    var result: Int = 0;

    result = num1 + num2;
    printf("Sum of integer numbers is: %d\n", result);
  }
  def AddNumbers(num1: Float, num2: Float) {
    var result: Float = 0;

    result = num1 + num2;
    printf("Sum of float numbers is: %f\n", result);
  }
}

object Sample {
  def main(args: Array[String]) {
    var obj = new Calc();

    obj.AddNumbers(10, 20);
    obj.AddNumbers(10.4f, 20.5f);
  }
}

Output:

Sum of integer numbers is: 30
Sum of float numbers is: 30.900000

Explanation:

In the above program, we used an object-oriented approach to create the program. And, we created an object Sample.

Here, we created a class Calc. In the Calc class, we implemented method overloading by creating two AddNumbers() methods with different types of arguments. The AddNumbers() method is used to add specified 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

total answers (1)

Scala program to implement method overloading base... >>
<< Scala program to implement method overloading base...