πŸ““9.3: Overriding

Table of Contents


πŸ“– This page is a condensed version of CSAwesome Topic 9.3


Overriding Inherited Methods

A subclass inherits all public methods from its superclass, and these methods remain public in the subclass as well. But, we also usually add more methods or instance variables to the subclass. Sometimes, we want to modify or replace existing inherited methods – essentially making the child class β€œbehave differently” than the parent. This is called overriding methods.

Overriding an inherited method means providing a public method in a subclass with the exact same method header/signature (method name, parameter type list, and return type) as a public method in the superclass. The method in the subclass will be called instead of the method in the superclass. One method that is frequently overridden in child classes is the toString method!

To OVERRIDE an inherited method, the method in the child class must have the same signature (name, parameter list, and return type) as the parent method.

In the following example the MeanGreeter inherits the greet() method from Greeter, but then overrides it.

public class Greeter {
   public String greet() {
      return "Hi";
   }
}
public class MeanGreeter extends Greeter {
   public String greet() {
      return "Go Away";
   }
}

πŸ’» TRY IT OUT: Add another subclass called SpanishGreeter (or another language that you know) that extends Greeter and override the greet() method to return Hola! (or hi in another language) instead of Hi!.

Then a main method, you can create an object instance of each class to test out overriding behavior:

public static void main(String[] args) {
   Greeter g1 = new Greeter();
   System.out.println(g1.greet());
   Greeter g2 = new MeanGreeter();
   System.out.println(g2.greet()); // same method, different behavior!
}

Sometimes, you may see the @Override annotation above a method. This is optional but it provides an extra compiler check that you have matched the method signature exactly/

@Override
public String greet() {
    return "Go Away";
}

Overloading Methods

Don’t get overriding a method confused with overloading a method! Overloading a method is when several methods have the same name, but the parameter types, order, or amount are different.

So with overriding, the method signatures look identical but they are in different classes, but in overloading, only the method names are identical and they have different parameters.

g2.greet(); // This could be calling an OVERRIDDEN greet method in g2's class
g1.greet("Sam"); // This calls an OVERLOADED greet method

To overload a method the method must have the same name, but the parameter list must be different in some way. It can have a different number of parameters, different types of parameters, and/or a different order for the parameter types. The return type can also be different but you can’t have two methods that differ only in their return type.

Inherited Get/Set Methods

Inheritance means that an object of the child class automatically includes the instance variables and methods defined in the parent class. But if the inherited instance variables are private, which they should be, the child class cannot directly access them using dot notation. However, the child class can use public accessors (also called β€œgetters” or get methods) which are methods that get instance variable values and public mutators (also called β€œsetters” or set methods) which set their values.

For example, if a parent class has a private instance variable, name, then the parent will often provide a public getName method and a public setName method as shown below:

public class Person {
   private String name;

   public String getName() {
      return name;
   }

   public void setName(String name) {
      this.name = name;
   }
}

Any class that extends the Person class can make use of the inherited public getter and setter methods:

public class Student extends Person {
   ...
   public static void main(String[] args) {
      Student stu = new Student();
      stu.setName("Dina");
      System.out.println(stu.getName());
   }
}

πŸ’» In-Class Activity: Pet Sounds

  1. Go to
  2. Make sure you SIGN IN!
  3. Complete the Programming Challenge: Pet Sounds activity in pairs.

⭐️ Summary

  • Method overriding occurs when a public method in a subclass has the same method signature as a public method in the superclass.

  • Any method that is called must be defined within its own class or its superclass.

  • A subclass is usually designed to have modified (overridden) or additional methods or instance variables.

  • A subclass will inherit all public methods from the superclass (for example all the set and get methods); these methods remain public in the subclass.

  • Overloading a method is when several methods have the same name but the parameter types, order, or number are different.


Acknowledgement

Content on this page is adapted from Runestone Academy - Barb Ericson, Beryl Hoffman, Peter Seibel.