在C++中,可以为参数指定默认值,C语言是不支持默认参数的,Java也不支持!!!
我们提供的服务有:网站设计、成都网站制作、微信公众号开发、网站优化、网站认证、达日ssl等。为上1000家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的达日网站制作公司
默认参数的语法与使用:
(1)在函数声明或定义时,直接对参数赋值。这就是默认参数;
(2)在函数调用时,省略部分或全部参数。这时可以用默认参数来代替。
注意事项:
(1)函数默认值只能赋值一次,或者是在声明中,或者是在定义中,如下所示
- /*正确*/
- #include
- int f(int a=5);
- int f(int a)
- {
- std::cout <
- return a;
- }
- int main()
- {
- f();
- return 0;
- }
- /*正确*/
- #include
- int f(int a=5)
- {
- std::cout <
- return a;
- }
- int main()
- {
- f();
- return 0;
- }
- /*正确*/
- #include
- int f(int a);
- int f(int a=5)
- {
- std::cout <
- return a;
- }
- int main()
- {
- f();
- return 0;
- }
- /*错误*/
- #include
- int f(int a=5);
- int f(int a=5)
- {
- std::cout <
- return a;
- }
- int main()
- {
- f();
- return 0;
- }
- [niuxinli@localhost ~]$ make test
- g++ test.cpp -o test
- test.cpp: In function ‘int f(int)’:
- test.cpp:3: error: default argument given for parameter 1 of ‘int f(int)’
- test.cpp:2: error: after previous specification in ‘int f(int)’
- make: *** [test] Error 1
(2) 默认参数定义的顺序为自右到左。即如果一个参数设定了缺省值时,其右边的参数都要有缺省值。比如int f(int a, int b=1,int c=2,int d=3)是对的,但是int f(int a,int b=1,int c=2,int d)就是错的。这个的原因很显然,你传几个参数,编译器都认为是从左向右的,比如int f(int a,int b=1,int c),传入了f(1,2),它会认为a=1,b=2,那c呢?所以必须做这个限定。
- #include
- int f(int a,int b);
- int f(int a=5,int b)
- {
- std::cout <
- return a;
- }
- int main()
- {
- f(6);
- return 0;
- }
- g++ test.cpp -o test
- test.cpp: In function ‘int f(int, int)’:
- test.cpp:3: error: default argument missing for parameter 2 of ‘int f(int, int)’
- make: *** [test] Error 1
(3)默认参数调用时,则遵循参数调用顺序,自左到右逐个调用。这一点要与第(2)分清楚,不要混淆。
如:void mal(int a, int b=3, int c=5); //默认参数
mal(3, 8, 9 ); //调用时有指定参数,则不使用默认参数
mal(3, 5); //调用时只指定两个参数,按从左到右顺序调用,相当于mal(3,5,5);
mal(5); //调用时只指定1个参数,按从左到右顺序调用v当于mal(5,3,5);
mal( ); //错误,因为a没有默认值
mal(3, , 9) //错误,应按从左到右顺序逐个调用
(4)默认参数可以是全局变量,全局常量,还可以是函数,但是不能是局部变量,因为局部变量在编译时未定
如
- [niuxinli@localhost ~]$ cat test.cpp
- #include
- int x = 5;
- int f(int a,int b,int c);
- int f(int a,int b=5,int c=x)
- {
- std::cout <
- return a;
- }
- int f2(int (*func)(int,int,int)=f )
- {
- func(2,3,5);
- return 0;
- }
- int main()
- {
- f(1);
- f2();
- return 0;
- }
- [niuxinli@localhost ~]$ make test && ./test
- g++ test.cpp -o test
- 11
- 10
但是注意一点,func不能使用默认参数了,因为func是局部变量,它是后来被赋值成f的
- [niuxinli@localhost ~]$ cat test.cpp
- #include
- int x = 5;
- int f(int a,int b,int c);
- int f(int a,int b=5,int c=x)
- {
- std::cout <
- return a;
- }
- int f2(int (*func)(int,int,int)=f )
- {
- func(2);
- return 0;
- }
- int main()
- {
- f(1);
- f2();
- return 0;
- }
- [niuxinli@localhost ~]$ make test
- g++ test.cpp -o test
- test.cpp: In function ‘int f2(int (*)(int, int, int))’:
- test.cpp:11: error: too few arguments to function
- make: *** [test] Error 1