I have a C background. I was just wondering why was function overloading added to C++? C doesn't have function overloading but C++ does, what was the need for it?
What went across the mind of the language designer at that time?
|
I have a C background. I was just wondering why was function overloading added to C++? C doesn't have function overloading but C++ does, what was the need for it? What went across the mind of the language designer at that time? |
|||||||||||||||||||||
|
|
It increases maintainability. If you have a type T and you call a function with it, then you need to change T, if the function has been overloaded for the new T then you can recompile instantly. In C you would have to go back and dig through all the call sites and change the function called. Take sqrt(). If you want to sqrt() a float, then you have to change to sqrtf(). Not just that, but the volume and complexity of C++'s type system is far more than in C, and having to have separate function names for every possible overload would quickly exhaust the reasonable pool of names for functions that serve the same purpose but take different arguments, because now there's a lot more arguments to take. For example, compare the C and C++ string libraries. The C string library offers one method to append to a string - strcat(). C++'s std::string::append has eight overloads. What do you want to call them? append_a, append_b, etc? That's ridiculous- they all serve the same function, just in different ways. Edit: It is actually worth mentioning that |
|||||||||||||||||||||
|
|
One good reason, in addition to what DeadMG said, is that if you're writing a template function which e.g. calls
|
|||||||||||||||||||||
|
|
Would you prefer "selecting" one among abs/labs/llabs/fabs/fabsf/fabsl Or just abs()? Obviously, abs(). So function overloading is a relief for programmers, most of the time, beside other advantages. |
|||||||||
|
|
You could get the answer straight from the horse's mouth: The Design and Evolution of C++ by Bjarne Stroustrup devotes an entire chapter to overloading, its history, evolution, design tradeoffs and decisions. I won't recount the story here, but will mention a couple of interesting historical facts:
|
|||
|
|
|
Try to come up with a comfortable way to construct objects if it weren't for function overloading.
A nonsense example, of course, but it illustrates the point. Another point would be template programming. You could not come up with generic templates if you had to have a different function name for each parameter type. |
|||||||||||
|
|
Using polymorphism , we can design a family of functions with same function name but with different argument list . The function would perform different operations depending on the arguments list in the function call. |
|||||||||||||
|