c++核心编程<函数提高>
3.函数提高
3.1函数默认参数
- 在C++中,函数的形参列表中的形参是可以有默认值的
- 语法:
返回值类型 函数名 (参数 = 默认值){}
- 案例
#include<iostream>
using namespace std;
int func(int a, int b, int c = 20);
// 如果传入数据,就用传入的数据;如果没有,就使用默认的数据
int func(int a, int b, int c) {
return a + b + c;
}
// 注意事项
// 1.参数列表默认参数,必须放在后面
// 2.如果函数的声明有默认参数,函数实现就不能有默认参数(只能有一个有默认参数[声明或实现])
int main() {
int total = func(10, 20);
cout << "total = " << total << endl;
int total2 = func(10, 20, 30);
cout << "total2 = " << total2 << endl;
system("pause");
return 0;
}
3.2函数占位参数
- C++中函数的形参列表里面可以有占位参数,用来做占位,调用函数时必须填补该位置
- 语法
返回值类型 函数名 (数据类型){}
- 案例
#include<iostream>
using namespace std;
//占位参数
void func(int a, int);
void func(int a, int) {
cout << "this is func" << endl;
}
// 注意事项
// 1.占位参数,还可以有默认参数
// void func(int a, int = 10) {}
int main() {
func(10, 20);
system("pause");
return 0;
}
3.3函数重载
3.3.1函数重载概述
-
作用: 函数名相同,提高复用性
-
函数重载满足条件:
- 同一个作用域下
- 函数名称相同
- 函数参数类型不同或个数不同或顺序不同
-
注意: 函数的返回值不可以作为函数重载的条件
-
案例
#include<iostream>
using namespace std;
void func();
void func(int a);
void func(int a, int b);
void func(double a);
void func() {
cout << "func()的调用" << endl;
}
void func(int a) {
cout << "func(int a)的调用" << endl;
}
void func(int a, int b) {
cout << "func(int a,int b)的调用" << endl;
}
void func(double a) {
cout << "func(double a)的调用" << endl;
}
int main() {
func(3.1415);
system("pause");
return 0;
}
3.3.2函数重载注意事项
- 引用作为重载条件
- 函数重载碰到函数默认参数
#include<iostream>
using namespace std;
// 函数重载的注意事项
// 1.引用作为重载的条件
void func(int& a);
void func(const int& a);
void func(int& a) {
cout << "func(int &a)调用" << endl;
}
// const int &a = 10是合法的,编译器会自动创建临时变量
void func(const int& a) {
cout << "func(const int &a)调用" << endl;
}
// 2.函数重载碰到默认参数
void func2(int a, int b = 10);
void func2(int a);
void func2(int a, int b) {
cout << "func2(int a,int b = 10)" << endl;
}
void func2(int a) {
cout << "func2(int a)" << endl;
}
int main() {
int a = 10;
func(a); // func(int &a)调用
func(10); // func(const int &a)调用
int b = 10;
// 函数重载出现二义性
// func2(b);
system("pause");
return 0;
}