C++语言基础 例程 函数重载

贺老师的教学链接

重载函数:同名同体,但接口不同

#include <iostream>
using namespace std;
int max(int a,int b,int c);          //函数声明
double max(double a,double b,double c);
long max(long a,long b,long c);
int main( )
{
    int i1,i2,i3,i;
    cin>>i1>>i2>>i3;       //输入3个整数
    i=max(i1,i2,i3);         //求3个整数中的最大者
    cout<<"i_max="<<i<<endl;
    double d1,d2,d3,d;
    cin>>d1>>d2>>d3;     //输入3个双精度数
    d=max(d1,d2,d3);      //求3个双精度数中的最大者
    cout<<"d_max="<<d<<endl;
    long g1,g2,g3,g;
    cin>>g1>>g2>>g3;    //输入3个长整数
    g=max(g1,g2,g3);     //求3个长整数中的最大者
    cout<<"g_max="<<g<<endl;
}
int max(int a,int b,int c)
{
    if(b>a) a=b;
    if(c>a) a=c;
    return a;
}
double max(double a,double b,double c)
{
    if(b>a) a=b;
    if(c>a) a=c;
    return a;
}
long max(long a,long b,long c)
{
    if(b>a) a=b;
    if(c>a) a=c;
    return a;
}

重载函数:同名不同体,参数个数有区别

#include <iostream>
using namespace std;
int max(int a,int b,int c); //函数声明
int max(int a,int b);
int main( )
{
    int a=8,b=-12,c=27;
     //输出3个整数中的最大者
    cout<<"max(a,b,c)="<<max(a,b,c)<<endl;
     //输出两个整数中的最大者
    cout<<"max(a,b)="<<max(a,b)<<endl;
}
int max(int a,int b,int c)
{
    if(b>a) a=b;
    if(c>a) a=c;
    return a;
}

int max(int a,int b)
{
    if(a>b) return a;
    else return b;
}

函数重载与参数的默认值不要冲突

#include <iostream>
using namespace std;
int max(int a,int b,int c=5);    //函数声明
int max(int a,int b);
int main( )
{
    int a=8,b=-12,c=27;
    cout<<"max(a,b,c)="<<max(a,b,c)<<endl;
    cout<<"max(a,b)="<<max(a,b)<<endl;
    return 0;
}
int max(int a,int b,int c)
{
    if(b>a) a=b;
    if(c>a) a=c;
    return a;
}

int max(int a,int b)
{
    if(a>b) return a;
    else return b;
}
时间: 2024-09-19 16:36:21

C++语言基础 例程 函数重载的相关文章

C++语言基础 例程 函数中的引用

贺老师的教学链接  本课讲解 引用作为形参 #include<iostream> using namespace std; class Sample { int x; public: Sample(int a): x(a) {cout<<"A";} Sample(Sample &a): x(a.x) {cout<<"B";} int getX(){return x;} }; void disp(Sample &s)

C++语言基础 例程 函数模板

贺老师的教学链接 使用用函数模板 #include <iostream> using namespace std; template<typename T> //模板声明,其中T为类型参数 T max(T a,T b,T c) //定义一个通用函数,用T作虚拟的类型名 { if(b>a) a=b; if(c>a) a=c; return a; } int main( ) { int i1=185,i2=-76,i3=567; double d1=56.87,d2=90.

C++语言基础 例程 重载流插入运算符和流提取运算符

贺老师的教学链接  本课讲解 重载流插入运算符"<<" #include <iostream> using namespace std; class Complex { public: Complex( ) { real=0; imag=0; } Complex(double r,double i) { real=r; imag=i; } Complex operator + (Complex &c2); //运算符"+"重载为成员函

C++语言基础 例程 重载双目运算符

贺老师的教学链接  本课讲解 String类运算符重载函数 #include<iostream> #include<cstring> using namespace std; class String { public: String( ){p=NULL;} String(char *str); friend bool operator>(String &s1, String &s2); friend bool operator<(String &

C++语言基础 例程 虚函数

贺老师的教学链接  本课讲解 指向基类的指针,为何只能访问来自基类成员?! #include <iostream> #include <string> using namespace std; //声明基类Student class Student { public: Student(int, string,float);//声明构造函数 void display( ); //声明输出函数 protected: //受保护成员,派生类可以访问 int num; string nam

C++语言基础 例程 内置函数

贺老师的教学链接 例:函数指定为内置函数 #include <iostream> using namespace std; inline int max(int,int,int); int main( ) { int i=10,j=20,k=30,m; m=max(i,j,k); cout<<"max="<<m<<endl; return 0; } inline int max(int a,int b,int c) { if(b>a

C++语言基础 例程 有默认参数的函数

贺老师的教学链接 形参/实参.声明/调用/定义 #include <iostream> using namespace std; int max(int a, int b, int c=0);//仅声明时设默认 int main( ) { int a,b,c; cin>>a>>b>>c; cout<<"max(a,b,c)="<<max(a,b,c)<<endl; cout<<"m

C++语言基础 例程 类声明和成员函数定义的分离

贺老师的教学链接  本课讲解 1.一个程序,一个源文件的做法 #include<iostream> #include<cstring> using namespace std; class Student { private: char Name[20]; //学生姓名 double Chinese; //语文成绩 double Math; //数学成绩 public: double Average( );//计算平均成绩 double Sum( ); //计算总分 void Sh

C++语言基础 例程 重载单目运算符

贺老师的教学链接  本课讲解 示例1:分数类对象的相反数 class CFraction { private: int nume; // 分子 int deno; // 分母 public: CFraction(int nu=0,int de=1):nume(nu),deno(de) {} CFraction operator-(const CFraction &c); //两个分数相减,结果要化简 CFraction operator-(); //取反一目运算 }; // 分数相减 CFrac