Scala program to create an abstract class with the non-abstract method

Here, we are going to learn how to create an abstract class with the non-abstract method in Scala programming language?
Submitted by Nidhi, on July 07, 2021 [Last updated : March 11, 2023]

Scala – Abstract Class with Non-Abstract Method Example

Here, we will demonstrate the use of abstract class with the non-abstract method. An abstract class can contain both abstract and non-abstract methods. To implement the abstract methods, we need to inherit the abstract class into a class.

Scala code to demonstrate the example of abstract class with the non-abstract method

The source code to create an abstract class with a non-abstract method is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to create an abstract class 
// with a non-abstract method

abstract class Demo1 {
  def sayHi() {
    printf("Hiii\n");
  }
  def sayHello();

}

class Demo2 extends Demo1 {
  def sayHello() {
    printf("Hello\n");
  }
}

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

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

Output

Hiii
Hello

Explanation

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

Here, we created two classes Demo1 and Demo2. The Demo1 is an abstract class. It contain a non-abstract method sayHi() and an abstract method sayHello().

In the main() function, we created the object of the Demo2 class and called sayHi() and sayHello() method.

Scala Abstract Classes Programs »



ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.