Overloading a function with reference parameters : function overload « Function « C++ Tutorial






#include <iostream>
#include <iomanip>
using namespace std;

double larger(double a, double b);
long& larger(long& a, long& b);


int main()
{
  cout << larger(1.5, 2.5) << endl;
 
  cout << larger(static_cast<long>(12), static_cast<long>(13))
       << endl;

  return 0;
}

double larger(double a, double b)
{
  cout << " double version. ";
  return a>b ? a : b;
}

long& larger(long& a, long& b)
{
  cout << " long ref version. ";
  return a>b ? a : b;
}
double version. 2.5
 double version. 13








7.12.function overload
7.12.1.Overload a function three times.
7.12.2.Overload function by parameter type: int, double and long
7.12.3.Overload functions with two parameters
7.12.4.Overloading functions with difference in number of parameters
7.12.5.Create overloaded print() and println() functions that display various types of data
7.12.6.Overload function with array type
7.12.7.Overloading a function with const reference parameters
7.12.8.Overloading a function with reference parameters
7.12.9.Default Arguments vs. Overloading
7.12.10.Finding the Address of an Overloaded Function