2.1函数默认参数
在Cpp中,函数的形参列表是可以有默认参数值的。
语法:返回值类型 函数名(参数=默认值)
Tip:如果某个位置已经有了默认参数,那么从这个位置往后,从左到右都必须有默认值
#include<iostream>
using namespace std;
int fun(int a,int b=20,int c=90){
return a+b+c;
}
//如果有传入数据则用自己的数据,否则使用默认值
//Tip:如果某个位置已经有了默认参数,那么从这个位置往后,从左到右都必须有默认值
int main(){
cout<<fun(10,30)<<endl;
cout<<fun(10)<<endl ;
system("pause");
return 0;
}
Tip:如果函数声明中,函数实现就不能有默认参数
#include<iostream>
using namespace std;
//int func2(int a=2,int b);//error 函数声明与下一行的函数实现中军含有默认参数,出现二义性
int func(int a,int b);
int func2(int a=1,int b=9){
return a+b;
}
int main(){
cout<<func2(12,4)<<endl;
system("pause");
return 0;
}
2.2函数占位参数
C++函数的形参列表可以有占位参数,用来做占位,调用函数时必须填补该位置
语法:返回值类型 函数名(数据类型){ }
#include<iostream>
using namespace std;
void func(int a,int){ //占位参数
cout<<"this is func"<<endl;
}
int main(){
func(10,90);
system("pause");
return 0;
}
2.3函数重载
作用:函数名可以相同,提高复用性
满足条件:
1)同一个作用域
2)函数名称相同
3)函数类型不同 或者 个数不同 或者 顺序不同
#include<iostream>
using namespace std;
/*void func(){
cout<<"func的调用"<<endl;
}
void func(int a){
cout<<"func(int a)的调用"<<endl;
}
void func(double a){
cout<<"func(double a)的调用"<<endl;
}
void func(double a,int b){
cout<<"func(double a,int b)的调用"<<endl;
}*/
void func(int &a){
cout<<"!!"<<endl;
}
void func(const int &a){
cout<<"11"<<endl;}
int main(){
int a=10;
/* func(10);
func(3.14);
func(3.14,2);*/
func(a);
// func(10);
system("pause");
return 0;
}
1.引用作为重载的条件
#include <iostream>
using namespace std;
void func(int &a){ //int &a = 10; 不合法
cout<<"1"<<endl;
}
void func(const int &a){ //const int &a=10;
cout<<"2"<<endl;
}
int main(){
int a=10;
func(a);
func(10);
return 0;
}
2.函数重载碰到默认参数 出现二义性
//ERROR
void func(int &a){
cout<<"1"<<endl;
}
void func(int &a,int b=10){
cout<<"1"<<endl;
}
int main(){
func(10); //ERROR 当函数重载碰到默认参数,出现二义性
return 0;
}