1.函数默认参数
c++中,函数的形参列表中的形参是可以由默认值的
#include <iostream>
using namespace std;
//如果我们传入数据,就用自己的数据,否则使用默认参数
//返回值类型 函数名 (形参 = 默认值)
int fun(int a,int b = 10, int c = 20)
{
return a+b+c;
}
//z注意事项
//1、如果某个位置已经有了默认参数,那么从这个位置往后都必须有默认值
//2、如果函数申明有默认值,那么函数实现就不能有默认值
int fun2 (int a =1, int b =2);
int fun2(int a, int b)
{
return a+b;
}
2.函数的占位参数
c++中函数的形参列表中可以有占位参数,用来做占位,调用函数时填补该位置