Q:

Scala program to override the field of a class

0

Here, we will override a method using the override keyword. We can implement the method with the same name using method overriding.

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 override the field of a class is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to override the field of a class

class A {
  val num: Int = 10;
}

class B extends A {
  override val num: Int = 20;
}

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

    printf("Value of num: %d\n", obj.num);
  }
}

Output:

Value of num: 20

Explanation:

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

Here, we created two classes A and B. The class A contains a data member num initialized with 10. Then we inherited the class B, here we override the data member num using the override keyword and initialized with 20.

Then we defined the main() function in the Sample object. The main() function is the entry point for the program.

In the main() function, we created the object of class B and then set and print the value of overridden data member.

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now