Call a method on a Super Class in Scala Last Updated : 05 Aug, 2019 Comments Improve Suggest changes 1 Likes Like Report This concept is used when we want to call super class method. So whenever a base and subclass have same named methods then to resolve ambiguity we use super keyword to call base class method. The keyword "super" came into this with the concept of Inheritance. Below is the example of call a method on a superclass. Example #1: Scala // Scala program to call a method // on a superclass in Scala /* Base class ComputerScience */ class ComputerScience { def read { println("I'm reading") } def write { println("I'm writing") } } /* Subclass Scala */ class Scala extends ComputerScience { // Note that readThanWrite() is only in Scala class def readThanWrite() { // Will invoke or call parent class read() method super.read // Will invoke or call parent class write() method super.write } } // Creating object object Geeks { // Main method def main(args: Array[String]) { var ob = new Scala(); // Calling readThanWrite() of Scala ob.readThanWrite(); } } Output: I'm reading I'm writing In above example, we are calling multiple method of super class by using super keyword. Example #2: Scala // Scala program to call a method // on a superclass in Scala /* Super class Person */ class Person { def message() { println("This is person class"); } } /* Subclass Student */ class Student extends Person { override def message() { println("This is student class") } // Note that display() is only in Student class def display() { // will invoke or call current class message() method message () // will invoke or call parent class message() method super.message } } /* Creating object */ object Geeks { // Main method def main(args: Array[String]) { var s = new Student(); // Calling display() of Student s.display(); } } Output: This is student class This is person class In the above example, we have seen that if we only call method message() then, the current class message() is invoked but with the use of super keyword, message() of super class could also be invoked. Comment D DivyaPareek Follow 1 Improve D DivyaPareek Follow 1 Improve Article Tags : Scala Scala-OOPS Explore OverviewScala Programming Language3 min readIntroduction to Scala7 min readSetting up the environment in Scala3 min readHello World in Scala2 min readBasicsScala Keywords2 min readScala Identifiers3 min readData Types in Scala3 min readVariables in Scala3 min readControl StatementsScala | Decision Making (if, if-else, Nested if-else, if-else if)5 min readScala | Loops(while, do..while, for, nested loops)5 min readBreak statement in Scala3 min readScala | Literals4 min readOOP ConceptsClass and Object in Scala5 min readInheritance in Scala5 min readOperators in Scala11 min readScala Singleton and Companion Objects3 min readScala Constructors4 min readScala | Polymorphism5 min readScala | Multithreading3 min readScala this keyword2 min readMethodsScala | Functions - Basics3 min readAnonymous Functions in Scala2 min readScala | Closures3 min readRecursion in Scala4 min readMethod Overloading in Scala5 min readMethod Overriding in Scala8 min readLambda Expression in Scala4 min readScala Varargs2 min readStringsScala String4 min readScala | String Interpolation3 min readScala | StringContext2 min readRegular Expressions in Scala5 min readStringBuilder in Scala4 min readScala PackagesPackages In Scala4 min readScala | Package Objects3 min readChained Package Clauses in Scala3 min readFile Handling in Scala3 min readScala TraitScala | Traits7 min readScala | Sealed Trait4 min readScala | Trait Mixins3 min readTrait Linearization in Scala5 min readCollectionsScala Lists5 min readScala ListBuffer6 min readListSet in Scala6 min readScala Map5 min readScala | Arrays6 min readScala | ArrayBuffer4 min readScala | Tuple5 min readSet in Scala | Set-13 min readSet in Scala | Set-27 min readBitSet in Scala5 min readHashSet In Scala4 min readStack in Scala3 min readHashMap in Scala3 min readTreeSet in Scala4 min readIterators in Scala5 min readScala | Option3 min read Like