Yan-英杰的主页
悟已往之不谏 知来者之可追
C++程序员,2024届电子信息研究生
目录
1.缺省参数(默认参数)
2.函数重载
a.函数重载的概念
问题:
为什么C语言无法重载,而C plus plus 可以重载?
C plus plus是如何做到函数重载的?
想法:
b.引用-取别名
1.缺省参数(默认参数)
缺省参数是声明或定义函数时为函数的参数定一个缺省值,当我们传参时,若未传任何参
数,则使用参数的默认值,默认传参顺序,从左往右
全缺省:所有传入的参数均有默认参数
void Func(int a = 0,int b = 10,int c = 20)//缺省参数
{
cout << a << endl;
cout << b << endl;
cout << c << endl;
}
int main()
{
Func();//没有传参时,使用参数的默认值
Func(1);//传参时,使用指定的实参
Func(1,2);
Func(10 ,20 ,30);
return 0;
}
半缺省:参数可能有几个为参入的参数,默认传参数至少一个
void Func1(int a ,int b = 10 ,int c= 20)
{
cout << a << endl;
cout << b << endl;
cout << c << endl;
}
int main()
{
Func1(10);
return 0;
}
定义和实现,缺省参数必须一致,最担心出现的问题,是缺省参数不同,造成报错,缺省参数,声明给缺省,定义不给
2.函数重载
a.函数重载的概念
问题:
为什么C语言无法重载,而C plus plus 可以重载?
C语言
void f()
{
cout <<"f()" << endl;
}
void f(int a = 0)
{
cout << "f(int a)" << endl;
}
int main()
{
f();
return 0;
}
C plus plus
//函数重载
int Add(int left, int right)
{
cout << "int Add(int left, int right)" << endl;
return left + right;
}
double Add(double left, double right)
{
cout << "double Add(double left, double right)" << endl;
return left + right;
}
int main()
{
Add(10, 20);
Add(10.1, 20.2);
return 0;
}
C plus plus是如何做到函数重载的?
C++支持函数名相同,参数不同
注:只有编译错误和链接错误,汇编不存在错误,一对一进行转换
想法:
编译阶段是否能拿到地址?
无法拿到地址
b.引用-取别名
int main()
{
int a = 0;
int& b = a;
int& c = b;
int& d = c;
cout << a << endl;
cout << b << endl;
a++;
b++;
cout << c << endl;
cout << d << endl;
return 0;
}
引用的指向无法更改,相当于别名
C++最主要的作用是补充了C语言