首页 > 编程语言 > 详细

c++构造函数

时间:2014-06-19 08:13:52      阅读:441      评论:0      收藏:0      [点我收藏+]

在实例化类时,会自动调用构造函数

构造函数可以重构

当没有自定义构造函数时,系统会自动定义无参数的构造函数,但是一旦定义了一个构造函数,系统就不会自动定义无参数的构造函数

#include <iostream>
using namespace std;
class Box
{
public :
	Box(int,int,int);
	Box();
	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 box3;
	return 0;
}

报错:

unresolved external symbol "public: __thiscall Box::Box(void)" (??0Box@@QAE@XZ)

  

构造函数可以通过参数表的方式定义:

Box::Box(int h,int w,int len):height(h),width(w),length(len) //在类外定义带参数的构造函数
{
}

  

 

c++构造函数,布布扣,bubuko.com

c++构造函数

原文:http://www.cnblogs.com/jsy306/p/3789430.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!