Page 1 of 8
Home Whiteboard Online Compilers Practice Articles Tools
Chapters Categories
Java - Overriding
In the previous chapter, we talked about superclasses and subclasses. If a class inherits a
method from its superclass, then there is a chance to override the method provided that it
is not marked final.
Benefit of Overriding in Java
The benefit of overriding is: ability to define a behavior that's specific to the subclass type,
which means a subclass can implement a parent class method based on its requirement.
In object-oriented terms, overriding means to override the functionality of an existing
method.
Advertisement
Java Method Overriding
Method overriding allows us to achieve run-time polymorphism and is used for writing
specific definitions of a subclass method that is already defined in the superclass.
[Link] w w .[Link]/java/java_overriding.htm 1/8
Page 2 of 8
The method is superclass and overridden method in the subclass should have the same
declaration signature such as parameters list, type, and return type.
Usage of Java Method Overriding
Following are the two important usages of method overriding in Java:
Method overriding is used for achieving run-time polymorphism.
Method overriding is used for writing specific definition of a subclass method (this
method is known as the overridden method).
Example of Method Overriding in Java
Let us look at an example.
class Animal {
public void move() {
[Link]("Animals can move");
}
}
class Dog extends Animal {
public void move() {
[Link]("Dogs can walk and run");
}
}
public class TestDog {
public static void main(String args[]) {
Animal a = new Animal(); // Animal reference and object
Animal b = new Dog(); // Animal reference but Dog object
[Link](); // runs the method in Animal class
[Link](); // runs the method in Dog class
}
}
[Link] w w .[Link]/java/java_overriding.htm 2/8
Page 3 of 8
Output
Animals can move
Dogs can walk and run
In the above example, you can see that even though b is a type of Animal it runs the
move method in the Dog class. The reason for this is: In compile time, the check is made
on the reference type. However, in the runtime, JVM figures out the object type and would
run the method that belongs to that particular object.
Therefore, in the above example, the program will compile properly since Animal class has
the method move. Then, at the runtime, it runs the method specific for that object.
Consider the following example −
Example
class Animal {
public void move() {
[Link]("Animals can move");
}
}
class Dog extends Animal {
public void move() {
[Link]("Dogs can walk and run");
}
public void bark() {
[Link]("Dogs can bark");
}
}
public class TestDog {
public static void main(String args[]) {
Animal a = new Animal(); // Animal reference and object
Animal b = new Dog(); // Animal reference but Dog object
[Link](); // runs the method in Animal class
[Link] w w .[Link]/java/java_overriding.htm 3/8
Page 4 of 8
[Link](); // runs the method in Dog class
[Link]();
}
}
Output
[Link]: error: cannot find symbol
[Link]();
^
symbol: method bark()
location: variable b of type Animal
1 error
This program will throw a compile time error since b's reference type Animal doesn't have
a method by the name of bark.
Rules for Method Overriding
The argument list should be exactly the same as that of the overridden method.
The return type should be the same or a subtype of the return type declared in the
original overridden method in the superclass.
The access level cannot be more restrictive than the overridden method's access
level. For example: If the superclass method is declared public then the overridding
method in the sub class cannot be either private or protected.
Instance methods can be overridden only if they are inherited by the subclass.
A method declared final cannot be overridden.
A method declared static cannot be overridden but can be re-declared.
If a method cannot be inherited, then it cannot be overridden.
A subclass within the same package as the instance's superclass can override any
superclass method that is not declared private or final.
A subclass in a different package can only override the non-final methods declared
public or protected.
An overriding method can throw any uncheck exceptions, regardless of whether
the overridden method throws exceptions or not. However, the overriding method
should not throw checked exceptions that are new or broader than the ones
declared by the overridden method. The overriding method can throw narrower or
fewer exceptions than the overridden method.
[Link] w w .[Link]/java/java_overriding.htm 4/8
Page 5 of 8
Constructors cannot be overridden.
Java Method and Constructor Overriding
In Java, each class has a different name and the constructor's name is the same as the
class name. Thus, we cannot override a constructor as they cannot have the same name.
Java Method Overriding: Using the super Keyword
When invoking a superclass version of an overridden method the super keyword is used.
Example: Using the super Keyword
class Animal {
public void move() {
[Link]("Animals can move");
}
}
class Dog extends Animal {
public void move() {
[Link](); // invokes the super class method
[Link]("Dogs can walk and run");
}
}
public class TestDog {
public static void main(String args[]) {
Animal b = new Dog(); // Animal reference but Dog object
[Link](); // runs the method in Dog class
}
}
Output
Animals can move
[Link] w w .[Link]/java/java_overriding.htm 5/8
Page 6 of 8
Dogs can walk and run
TOP TUTORIALS
Python Tutorial
Java Tutorial
C++ Tutorial
C Programming Tutorial
C# Tutorial
PHP Tutorial
R Tutorial
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
SQL Tutorial
TRENDING TECHNOLOGIES
Cloud Computing Tutorial
Amazon Web Services Tutorial
Microsoft Azure Tutorial
Git Tutorial
Ethical Hacking Tutorial
Docker Tutorial
Kubernetes Tutorial
DSA Tutorial
Spring Boot Tutorial
SDLC Tutorial
Unix Tutorial
CERTIFICATIONS
Business Analytics Certification
Java & Spring Boot Advanced Certification
Data Science Advanced Certification
Cloud Computing And DevOps
[Link] w w .[Link]/java/java_overriding.htm 6/8
Page 7 of 8
Advanced Certification In Business Analytics
Artificial Intelligence And Machine Learning
DevOps Certification
Game Development Certification
Front-End Developer Certification
AWS Certification Training
Python Programming Certification
COMPILERS & EDITORS
Online Java Compiler
Online Python Compiler
Online Go Compiler
Online C Compiler
Online C++ Compiler
Online C# Compiler
Online PHP Compiler
Online MATLAB Compiler
Online Bash Terminal
Online SQL Compiler
Online Html Editor
ABOUT US | OUR TEAM | CAREERS | JOBS | CONTACT US | TERMS OF USE |
PRIVACY POLICY | REFUND POLICY | COOKIES POLICY | FAQ'S
Tutorials Point is a leading Ed Tech company striving to provide the best learning material on
technical and non-technical subjects.
[Link] w w .[Link]/java/java_overriding.htm 7/8
Page 8 of 8
© Copyright 2025. All Rights Reserved.
[Link] w w .[Link]/java/java_overriding.htm 8/8