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...
Showing posts with label Method OverRiding. Show all posts
Showing posts with label Method OverRiding. Show all posts
Saturday, 19 September 2015
Subscribe to:
Posts (Atom)
Followers
Popular Posts
-
Sqlite Database is the best way of providing portability...
-
Necessity is the advent of everything today while doing...
-
Quick Sort is a Sorting Algorithm based on Divide And...