1.缺省参数的概念

缺省参数是声明或定义函数时为函数的参数指定一个缺省值。在调用该函数时,如果没有指定实参则采用该形参的缺省值,否则使用指定的参数。

#include <iostream>
using namespace std;

void Func(int a = 0)
{
	cout << a << endl;
}

int main()
{
	Func();
	Func(1);
  
	return 0;
}

C++入门:缺省参数_缺省参数



2.缺省参数分类

1)全缺省参数

void Func(int a = 0, int b = 0, int c = 0)
{
	cout << a << endl;
	cout << b << endl;
	cout << c << endl;
}

2)半缺省参数

void Func(int a , int b = 0, int c = 0)
{
	cout << a << endl;
	cout << b << endl;
	cout << c << endl;
}

注意:

1.半缺省参数必须依次给出,不能间隔着给

2.缺省参数不能在函数声明和定义中同时出现

//a.h
void Func(int a = 10);

// a.cpp
void Func(int a = 20)
{}

// 注意:如果生命与定义位置同时出现,恰巧两个位置提供的值不同,
//那编译器就无法确定到底该用那个缺省值

3.缺省值必须是常量或者全局变量

4.C语言不支持(编译器不支持)