C++构造函数的默认参数
时间:2014-10-27 20:31 点击:次
和普通函数一样,构造函数中参数的值既可以通过实参传递,也可以指定为某些默认值,即如果用户不指定实参值,编译系统就使形参取默认值。
例9.3的问题也可以使用包含默认参数的构造函数来处理。
【例9.4】将例9.3程序中的构造函数改用含默认值的参数,长、宽、高的默认值均为10。
程序运行结果为:
The volume of box1 is 1000
The volume of box2 is 1500
The volume of box3 is 4500
The volume of box4 is 9000
程序中对构造函数的定义(第12-16行)也可以改写成参数初始化表的形式:
Box::Box(int h,int w,int len):height(h),width(w),length(len){ }
可以看到,在构造函数中使用默认参数是方便而有效的,它提供了建立对象时的多种选择,它的作用相当于好几个重载的构造函数。
它的好处是,即使在调用构造函数时没有提供实参值,不仅不会出错,而且还确保按照默认的参数值对对象进行初始化。尤其在希望对每一个对象都有同样的初始化状况时用这种方法更为方便。
关于构造函数默认值的几点说明:
例9.3的问题也可以使用包含默认参数的构造函数来处理。
【例9.4】将例9.3程序中的构造函数改用含默认值的参数,长、宽、高的默认值均为10。
- #include <iostream>
- using namespace std;
- class Box
- {
- public :
- Box(int h=10,int w=10,int len=10); //在声明构造函数时指定默认参数
- int volume( );
- private :
- int height;
- int width;
- int length;
- };
- Box::Box(int h,int w,int len) //在定义函数时可以不指定默认参数
- {
- height=h;
- width=w;
- length=len;
- }
- int Box::volume( )
- {
- return (height*width*length);
- }
- int main( )
- {
- Box box1; //没有给实参
- cout<<"The volume of box1 is "<<box1.volume( )<<endl;
- Box box2(15); //只给定一个实参
- cout<<"The volume of box2 is "<<box2.volume( )<<endl;
- Box box3(15,30); //只给定2个实参
- cout<<"The volume of box3 is "<<box3.volume( )<<endl;
- Box box4(15,30,20); //给定3个实参
- cout<<"The volume of box4 is "<<box4.volume( )<<endl;
- return 0;
- }
#include <iostream> using namespace std; class Box { public : Box(int h=10,int w=10,int len=10); //在声明构造函数时指定默认参数 int volume( ); private : int height; int width; int length; }; Box::Box(int h,int w,int len) //在定义函数时可以不指定默认参数 { height=h; width=w; length=len; } int Box::volume( ) { return (height*width*length); } int main( ) { Box box1; //没有给实参 cout<<"The volume of box1 is "<<box1.volume( )<<endl; Box box2(15); //只给定一个实参 cout<<"The volume of box2 is "<<box2.volume( )<<endl; Box box3(15,30); //只给定2个实参 cout<<"The volume of box3 is "<<box3.volume( )<<endl; Box box4(15,30,20); //给定3个实参 cout<<"The volume of box4 is "<<box4.volume( )<<endl; return 0; }
The volume of box1 is 1000
The volume of box2 is 1500
The volume of box3 is 4500
The volume of box4 is 9000
程序中对构造函数的定义(第12-16行)也可以改写成参数初始化表的形式:
Box::Box(int h,int w,int len):height(h),width(w),length(len){ }
可以看到,在构造函数中使用默认参数是方便而有效的,它提供了建立对象时的多种选择,它的作用相当于好几个重载的构造函数。
它的好处是,即使在调用构造函数时没有提供实参值,不仅不会出错,而且还确保按照默认的参数值对对象进行初始化。尤其在希望对每一个对象都有同样的初始化状况时用这种方法更为方便。
关于构造函数默认值的几点说明:
- 应该在声明构造函数时指定默认值,而不能只在定义构造函数时指定默认值。
- 程序第5行在声明构造函数时,形参名可以省略。
- 如果构造函数的全部参数都指定了默认值,则在定义对象时可以给一个或几个实参,也可以不给出实参。
- 在一个类中定义了全部是默认参数的构造函数后,不能再定义重载构造函数。
顶一下
(1)
20%
踩一下
(4)
80%
上一篇:C++构造函数的重载
下一篇:C++析构函数
相关内容:
最新内容
热点内容
- QQ群
-
微信
- 返回首页
- 返回顶部