What is the difference between overloading and overriding
Answered by Scott on 2005-05-12 09:44:53: Overloading: The same method name with a different signature (generally input argument list) written in the same class.
Overriding: The identical method signature from a parent (super) class written in a subclass and modification of the method body occurs.
RE: What is the difference between overloading and ove...
OVERLOADING:passing the same metohd name with different arguments this can be written with in the class.EX:Static binding.
OVERRIDDING:passing same method name with the same signatures in the child class also.this is relation with the parent & child class.EX:Dynamic binding.By Rajesh