C++核心编程<函数提高>(3)

文章介绍了C++中函数的一些高级特性,包括如何设置函数默认参数,如何使用占位参数以及函数重载的概念和应用。函数默认参数允许在不指定所有参数时使用预设值。占位参数可以用于函数定义,调用时需提供具体值。函数重载则允许在同一作用域内使用相同函数名但参数不同的多个函数,提高了代码复用性。此外,还提到了函数重载时的注意事项,如引用作为重载条件和默认参数的影响。
摘要由CSDN通过智能技术生成

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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值