Forum
Home >> New to Java >> What's the difference between "overloading" and "overriding" in Java
Add New   What's the difference between "overloading" and "overriding" in Java
Jacob William
Tue Apr 06, 2010
What's the difference between "overloading" and "overriding" in Java?
Richard william
Tue Apr 06, 2010
Overloading refers to having multiple methods which have the same name but different input parameters.

Overriding refers to methods within a subclass which have the same name and same input parameters thereby voiding the superclass method call from that particular class.