缺省参数
1.缺省参数概念:
#include <iostream>
using namespace std;
void show(int a = 1, int b = 2, int c = 3)
{cout << "a=" << a << endl;cout << "b=" << b << endl;cout << "c=" << c << endl;
}
int main()
{show();show(10, 20);return 0;
}
2.缺省参数的分类:
半缺省参数:函数的部分参数有缺省值,传参时,没有缺省值的必须传参且**缺省值要从右往左依次给**。
注意:
-
因为实参是从右往左传所以半缺省参数可以省略左边,不能省略右边,不能间隔给
-
缺省参数不能在函数声明和定义中同时出现
-
缺省值必须是常量或者全局变量
-
C语言不支持缺省(因为C语言的编译器不支持)