3.2函数占位参数
C++中函数的形参列表里可以有占位参数,用来做占位,调用函数时必须填补该位置
语法:返回值类型 函数名(数据类型){}
在现阶段函数的占位参数存在意义不大,但是后面的课程中会用到该技术
#include< iostream>
using namespace std;
//占位参数
void func(int a,int){cout <<" this is func”<< end1 ;
}
#include<iostream>
#include<string>
using namespace std;//占位参数 目前阶段的占位参数我们还用不到,后面课程中会用到
void func(int a, int) {cout << " this is func"<< endl;
}void func(int a, int =10) { //占位参数页可以有默认值cout << " this is func" << endl;
}int main() {//常量引用//使用场景:用来修饰形参,防止误操作//int a = 10;//加上const之后编译器将代码修改int temp = 10; const int & ref = temp; const int & ref = 10;//引用必须引一块合法的内存空间//ref = 20; //加入const之后变为只读,不可以修改func(10,10); //system(" pause");return 0;}