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

c++构造函数

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

标签:class   blog   ext   width   os      

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

构造函数可以重构

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

#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++构造函数

标签:class   blog   ext   width   os      

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

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