Method overriding occurs in dart when a child class tries to override the parent class’s method. When a child class extends a parent class, it gets full access to the methods of the parent class and thus it overrides the methods of the parent class. It is achieved by re-defining the same method present in the parent class.
This method is helpful when you have to perform different functions for a different child class, so we can simply re-define the content by overriding it.
Important Points:
- A method can be overridden only in the child class, not in the parent class itself.
- Both the methods defined in the child and the parent class should be the exact copy, from name to argument list except the content present inside the method i.e. it can and can’t be the same.
- A method declared final or static inside the parent class can’t be overridden by the child class.
- Constructors of the parent class can’t be inherited, so they can’t be overridden by the child class.
Example 1: Simple case of method overriding.
Dart
class SuperGeek {
void show(){
print( "This is class SuperGeek." );
}
}
class SubGeek extends SuperGeek {
void show(){
print( "This is class SubGeek child of SuperGeek." );
}
}
void main() {
SuperGeek geek1 = new SuperGeek();
SubGeek geek2 = new SubGeek();
geek1.show();
geek2.show();
}
|
Output:
This is class SuperGeek.
This is class SubGeek child of SuperGeek.
Example 2: When there is more than one child class.
Dart
class SuperGeek {
void show(){
print( "This is class SuperGeek." );
}
}
class SubGeek1 extends SuperGeek {
void show(){
print( "This is class SubGeek1 child of SuperGeek." );
}
}
class SubGeek2 extends SuperGeek {
void show(){
print( "This is class SubGeek2 child of SuperGeek." );
}
}
void main() {
SuperGeek geek1 = new SuperGeek();
SubGeek1 geek2 = new SubGeek1();
SubGeek2 geek3 = new SubGeek2();
geek1.show();
geek2.show();
geek3.show();
}
|
Output:
This is class SuperGeek.
This is class SubGeek1 child of SuperGeek.
This is class SubGeek2 child of SuperGeek.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
20 Jul, 2020
Like Article
Save Article