C++ Function Overloading

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Introduction

See also separate topic on Overload Resolution

Remarks

Ambiguities can occur when one type can be implicitly converted into more than one type and there is no matching function for that specific type.

For example:

void foo(double, double);
void foo(long, long);

//Call foo with 2 ints
foo(1, 2); //Function call is ambiguous - int can be converted into a double/long at the same time 


Got any C++ Question?