Showing posts with label Method OverRiding. Show all posts
Showing posts with label Method OverRiding. Show all posts

Saturday, 19 September 2015

Method Overloading And Method OverRiding

Method Overloading refers to Concept the defining the one or more functions or methods with same name with different Parameter Length or Parameter Types . So Functions are differenciated by their signature or Parameters . Example For Method OverLoading //Overloading public class test { public void getStuff(int id) {} public void getStuff(string name) {} }   Method...