前言
这篇文章主要讲述C++中函数重载的知识。
一、代码
//跟着视频学习的代码,分享记录一下
#include<iostream>
using namespace std;
//函数的重载
//可以让函数名相同,提高复用性
//函数重载的满足条件
//1.必须在同一个作用域下
//2.函数名称相同
//3.函数的参数类型不同,或者个数不同,或者顺序不同
int func()
{
cout << "func 的调用" << endl;
}
int func(int a)
{
cout << "func(int a) 的调用" << endl;
}
int func(double a)
{
cout << "func(double a) 的调用" << endl;
}
int func(int a,double b)
{
cout << "func(int a,double b) 的调用" << endl;
}
int func(double a, int b)
{
cout << "func(double a, int b) 的调用" << endl;
}
int main()
{
//func();
//func(10);
func(3.14);
system("pause");
}
//注意事项
//函数的返回值不同不可以作为函数重载的条件
总结
1.可以让函数名相同,提高复用性(作用)
2.必须在同一个作用域下
3.函数名称相同
4.函数的参数类型不同,或者个数不同,或者顺序不同
//注意事项
1.函数的返回值不同不可以作为函数重载的条件
2.重载时自动适配合法函数
3.两个重载函数不能具有同样的调用方式(碰到默认参数会出现二义性)