What does "Overloaded"/"Overload" mean in regards to programming?
It means that you are providing a function (method or operator) with the same name, but with a different signature. For example:
void doSomething(); int doSomething(string x); int doSomething(int a, int b, int c);
1.4m articles
1.4m replys
5 comments
57.0k users