Function overloading: Difference between revisions

Content deleted Content added
m Robot-assisted disambiguation (you can help!): Java programming language
Byronknoll (talk | contribs)
constructor overloading
Line 6:
 
Method overloading should not be confused with [[ad-hoc polymorphism]] or [[virtual function]]s. In those, the correct method is chosen at runtime.
 
In most languages the [[constructor]] can be overloaded so that there can be more than one constructor for a class, each having different parameters.
 
==See also==