2022年11月17日
摘要: void func(int a, int){ cout << "占位参数" << endl; } //占位参数之默认参数 void func2(int a, int =10){ cout << "占位默认参数" << endl; } int main(){ func(1, 1); func2(1); 阅读全文
posted @ 2022-11-17 22:25 知了不了了之 阅读(66) 评论(0) 推荐(0) 编辑
摘要: // 如果某个位置参数有默认值,那么从这个位置往后,从左向右,必须都有默认值int func( int a , int b=10){ return a+b; }//一个错误示范 int func( int a , int b=10 ,int c ){ return a+b +c; } int mai 阅读全文
posted @ 2022-11-17 22:16 知了不了了之 阅读(49) 评论(0) 推荐(0) 编辑