- 1、本文档共3页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C++中成员变量初始化有两种方式的区别
构造函数初始化列表和构造函数体内赋值两种方式有何不同?
成员变量初始化的顺序是按照在类中定义的顺序。
1 内部数据类型(char,int……指针等)
class Animal{
public:
Animal(int weight,int height): //A初始化列表
m_weight(weight),
m_height(height)
{
}
Animal(int weight,int height) //B函数体内初始化
{
m_weight = weight;
m_height = height;
}
private:
int m_weight;
int m_height;
};
对于这些内部类型来说,基本上是没有区别的,效率上也不存在多大差异。当然A和B方式不能共存的。
2 无默认构造函数的继承关系中
class Animal{
public:
Animal(int weight,int height): //没有提供无参的构造函数
m_weight(weight),
m_height(height)
{
}
private:
int m_weight;
int m_height;
};
class Dog: public Animal{
public:
Dog(int weight,int height,int type) //error 构造函数 父类Animal无合适构造函数
{
}
private:
int m_type;
};
这种必须在派生类中构造函数中初始化提供父类的初始化,因为对象构造的顺序是:
父类——子类——……
所以必须:
class Dog: public Animal{
public:
Dog(int weight,int height,int type):
Animal(weight,height) //必须使用初始化列表增加对父类的初始化
{
;
}
private:
int m_type;
};
3 类中const常量,必须在初始化列表中初始,不能使用赋值的方式初始化
class Dog: public Animal{
public:
Dog(int weight,int height,int type):
Animal(weight,height),
LEGS(4) //必须在初始化列表中初始化
{
//LEGS = 4; //error
}
private:
int m_type;
const int LEGS;
};
4 包含有自定义数据类型(类)对象的成员初始化
class Food{
public:
Food(int type = 10){
m_type = 10;
}
Food(Food other) //拷贝构造函数
{
m_type = other.m_type;
}
Food operator =(Food other) //重载赋值=函数
{
m_type = other.m_type;
return *this;
}
private:
int m_type;
};
(1)构造函数赋值方式 初始化成员对象m_food
class Dog: public Animal{
public:
Dog(Food food)
//:m_food(food)
{
m_food = food; //初始化 成员对象
}
private:
Food m_food;
};
//使用
Food fd;
Dog dog(fd); //
Dog dog(fd);结果:
先执行了 对象类型构造函数Food(int type = 10)——
然后在执行 对象类型构造函数Food operator =(Food other)
想象是为什么?
(2)构造函数初始化列表方式
class Dog: public An
文档评论(0)