Q:

Scala program to create a non-abstract method inside the trait

belongs to collection: Scala Trait Programs

0

Here, we will create a trait with the abstract and non-abstract method. Then we will implement the abstract method in a class by extending created trait.

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 create a non-abstract method inside the trait is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to create a non-abstract method
// inside the trait

trait SampleTrait {
  def sayHello();
  def sayHi() {
    println("Hi from SampleTrait");
  }
}

class Test extends SampleTrait {
  def sayHello() {
    println("Hello world");
  }
}

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

    obj.sayHello();
    obj.sayHi();
  }
}

Output:

Hello world
Hi from SampleTrait

Explanation:

In the above program, we used an object-oriented approach to create the program. Here, we created a trait SampleTrait that contains an abstract method sayHello() and a non-abstract method sayHi(). Then we extend the SampleTrait into class Test and implement sayHello() method.

Then we created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.

In the main() function, we created the object of the Test class and called sayHello() and sayHi() method and printed messages 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 multiple traits in a cl... >>
<< Scala program to extend a trait in a class without...