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

Effective C++ Item 4 确定对象被使用前已先被初始化

时间:2014-05-26 03:47:58      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   tar   

本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie


经验1:为内置对象进行手工初始化,因为C++不保证初始化它们

示例:

int x = 0;//对int进行手工初始化
const char *text = "A C-style string";  //对指针进行手工初始化

double d;
std::cin >> d;//以读取input stream的方式完成初始化


经验2:构造函数最好使用成员初值列 (member initialization list) ,而不要在构造函数本体内使用赋值操作(assignment) 。初值列列出的成员变量,其排列次序应该和它们在 class 中的声明次序相同。

示例1:用赋值操作初始化

#include <iostream>
using namespace std;

class A{
public:
	A(){cout << "default constructor" << endl;};
	A(int v):value(v){};
	A(const A &a2){cout << "copy constructor" << endl;}
	const A& operator=(const A &lhr) const{cout << "operator=" << endl; return *this;}
private:
	int value;
};

class B{
public:
	B(A a2){a = a2;};  //用赋值操作初始化
private:
	A a;
};

int main(){
	A a(1);
	B b(a);  //主要是通过输出看定义b变量调用的函数情况
	system("pause");
}

输出1:

copy constructor      //调用Acopy constructorB构造函数生成参数a2

default constructor    //进入B的构造函数前调用A的默认构造函数定义a

operator=               //调用赋值操作符将a赋值为a2


示例2:使用成员初值列

#include <iostream>
using namespace std;

class A{
public:
	A(){cout << "default constructor" << endl;};
	A(int v):value(v){};
	A(const A &a2){cout << "copy constructor" << endl;}
	const A& operator=(const A &lhr) const{cout << "operator=" << endl; return *this;}
private:
	int value;
};

class B{
public:
	B(A a2):a(a2){};
private:
	A a;
};

int main(){
	A a(1);
	B b(a);
	system("pause");
}

输出2:

copy constructor              //调用Acopy constructorB构造函数生成参数a2

copy constructor              //调用Acopy constructora复制为a2





Effective C++ Item 4 确定对象被使用前已先被初始化,布布扣,bubuko.com

Effective C++ Item 4 确定对象被使用前已先被初始化

标签:style   class   blog   c   code   tar   

原文地址:http://blog.csdn.net/zhengsenlie/article/details/26621825

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