Method overloading means having two or more methods with the same name but different signatures in the same scope. Compiler automatically select the most appropriate method based on the parameter supplied.
public class multiplynumber { public int multiply(int x, int y) { return x * y; } public int multiply(int x, int y, int z) { return x*y*z; } }
Method Overriding is achieved when a subclass overrides non-static methods defined in the superclass, following which the new method implementation in the subclass that is executed. The new method definition must have the same method signature and return type.
Clas A { Virtual void sum (int a) { } } Class B:A { public overrid void sum (int a) { } }
what is difference between method overloading and method overriding
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy
Join MindStick Community
You have need login or register for voting of answers or question.
Pushpendra Singh
08-Nov-2010Method Overriding is achieved when a subclass overrides non-static methods defined in the superclass, following which the new method implementation in the subclass that is executed.
The new method definition must have the same method signature and return type.