码迷,mamicode.com
首页 > 编程语言 > 详细

第一周 从C走进C++ 008 函数缺省参数

时间:2014-07-16 18:51:23      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   strong   div   

1. 函数的缺省参数
? C++中,定义函数的时候可以让最右边的连续若干个参数缺省值,那么调用函数的时候,若相应位置不写参数,参数就是缺省值

void func( int x1, int x2 = 2, int x3 = 3) {  }
func(10 ) ; //等效于func(10,2,3)
func(10,8) ; //等效于func(10,8,3)
func(10, , 8) ; //不行,只能最右边的连续若干个参数缺省

? 函数参数可缺省的目的在于提高程序的可扩充性。
? 即如果某个写好的函数要添加新的参数,而原先那些调用该函数的语句,未必需要使用新增的参数,那么为了避免对原先那些函数调用语句的修改,就可以使用缺省参数。

第一周 从C走进C++ 008 函数缺省参数,布布扣,bubuko.com

第一周 从C走进C++ 008 函数缺省参数

标签:style   blog   color   使用   strong   div   

原文地址:http://www.cnblogs.com/qingsiburan/p/3845126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!