您的位置:首页 > 编程语言 > C语言/C++

GeekForGeeks 何时在c++中使用初始化列表

2015-01-09 02:28 543 查看


When do we use Initializer List in C++?

Initializer List is used to initialize data members of a class. The list of members to be initialized is indicated with constructor as a comma separated list followed by a colon. Following is an example that uses initializer
list to initialize x and y of Point class.

简单的初始化列表的语法和例子如下:

The above code is just an example for syntax of Initializer list. In the above code, x and y can also be easily initialed inside the constructor. But there are situations where initialization of data members inside constructor doesn’t work and Initializer
List must be used. Following are such cases:

下面我们就来介绍一下在什么情况下必须使用初始化列表

1) For initialization of non-static const data members:(初始化类中的非静态的常量数据成员)

const data members must be initialized using Initializer List. In the following example, “t” is a const data member of Test class and is initialized using Initializer List.

类中的常量数据成员能且只能使用初始化列表进行初始化。

2) For initialization of reference members:(类中的引用成员)

Reference members must be initialized using Initializer List. In the following example, “t” is a reference member of Test class and is initialized using Initializer List.

类中的引用成员能且只能使用初始化列表进行初始化。

3) For initialization of member objects which do not have default constructor:(没有缺省构造函数的类成员变量)

In the following example, an object “a” of class “A” is data member of class “B”, and “A” doesn’t have default constructor. Initializer List must be used to initialize “a”.

If class A had both default and parameterized constructors, then Initializer List is not must if we want to initialize “a” using default constructor, but it is must to initialize “a” using parameterized constructor.

如果你想要带参数地初始化B中的成员变量a,必须使用初始化列表。

4) For initialization of base class members : Like point 3, parameterized constructor of base class can only be called using Initializer List.

参数化初始基类对象

5) When constructor’s parameter name is same as data member(构造函数变量与成员变量命名相同)

If constructor’s parameter name is same as data member name then the data member must be initialized either using this pointer or
Initializer List. In the following example, both member name and parameter name for A() is “i”.

6) For Performance reasons:(性能考虑)

It is better to initialize all class variables in Initializer List instead of assigning values inside body. Consider the following example:

Here compiler follows following steps to create an object of type MyClass(上述初始化过程总共包含三步)

1. Type’s constructor is called first for “a”.(参数a的Type构造函数调用)

2. The assignment operator of “Type” is called inside body of MyClass() constructor to assign(赋值构造函数调用)

variable = a;

3. And then finally destructor of “Type” is called for “a” since it goes out of scope.(参数a的Type析构函数调用)

Now consider the same code with MyClass() constructor with Initializer List

With the Initializer List, following steps are followed by compiler:

1. Copy constructor of “Type” class is called to initialize : variable(a). The arguments in initializer list are used to copy construct “variable” directly.

拷贝构造函数调用

2. Destructor of “Type” is called for “a” since it goes out of scope.

析构函数调用

As we can see from this example if we use assignment inside constructor body there are three function calls: constructor + destructor + one addition assignment operator call. And if we use Initializer List there are only two function calls: copy constructor
+ destructor call. See this post for a running example on this point.

This assignment penalty will be much more in “real” applications where there will be many such variables. Thanks to ptr for adding this point.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: