C/C++编程笔记:什么时候在C++中使用初始化列表?

C/C++编程笔记:什么时候在C++中使用初始化列表?_第1张图片

初始化程序列表用于初始化类的数据成员。构造函数将要初始化的成员列表表示为逗号分隔的列表,后跟冒号。下面是一个使用初始化程序列表初始化Point类的x和y的示例:

#include

using namespace std;

class Point {

private:

int x;

int y;

public:

Point(int i = 0, int j = 0):x(i), y(j) {}

/* The above use of Initializer list is optional as the

constructor can also be written as:

Point(int i = 0, int j = 0) {

x = i;

y = j;

}

*/

int getX() const {return x;}

int getY() const {return y;}

};

int main() {

Point t1(10, 15);

cout<<"x = "<#include

using namespace std;

class Test {

const int t;

public:

Test(int t):t(t) {} //Initializer list must be used

int getT() { return t; }

};

int main() {

Test t1(10);

cout<

2)对于引用成员的初始化: 

必须使用“初始化列表”来初始化引用成员。在以下示例中,“ t”是Test类的引用成员,并使用初始化列表进行初始化。

// Initialization of reference data members

#include

using namespace std;

class Test {

int &t;

public:

Test(int &t):t(t) {} //Initializer list must be used

int getT() { return t; }

};

int main() {

int x = 20;

Test t1(x);

cout<

3)对于没有默认构造函数的成员对象的初始化: 

在以下示例中,类“ A”的对象“ a”是类“ B”的数据成员,而“ A”没有默认构造函数。初始化列表必须用于初始化“ a”。

#include 

using namespace std;

class A {

int i;

public:

A(int );

};

A::A(int arg) {

i = arg;

cout << "A's Constructor called: Value of i: " << i << endl;

}

// Class B contains object of A

class B {

A a;

public:

B(int );

};

B::B(int x):a(x) { //Initializer list must be used

cout << "B's Constructor called";

}

int main() {

B obj(10);

return 0;

}

/* OUTPUT:

A's Constructor called: Value of i: 10

B's Constructor called

*/

如果类A同时具有默认构造函数和参数化构造函数,则如果要使用默认构造函数初始化“ a”,则不必使用“初始化列表”,而必须使用参数化构造函数初始化“ a”。 

4)对于基类成员的初始化:与第3点一样,只能使用Initializer List调用基类的参数化构造函数。

#include 

using namespace std;

class A {

int i;

public:

A(int );

};

A::A(int arg) {

i = arg;

cout << "A's Constructor called: Value of i: " << i << endl;

}

// Class B is derived from A

class B: A {

public:

B(int );

};

B::B(int x):A(x) { //Initializer list must be used

cout << "B's Constructor called";

}

int main() {

B obj(10);

return 0;

}

5)当构造函数的参数名称与数据成员相同时 

如果构造函数的参数名称与数据成员名称相同,则必须使用此指针或“初始化列表”来初始化数据成员。在以下示例中,A()的成员名称和参数名称均为“ i”。

#include 

using namespace std;

class A {

int i;

public:

A(int );

int getI() const { return i; }

};

A::A(int i):i(i) { } // Either Initializer list or this pointer must be used

/* The above constructor can also be written as

A::A(int i) {

this->i = i;

}

*/

int main() {

A a(10);

cout<

6)出于性能方面的考虑: 

最好在Initializer List中初始化所有类变量,而不是在主体内分配值。考虑以下示例: 

// Without Initializer List

class MyClass {

Type variable;

public:

MyClass(Type a) { // Assume that Type is an already

// declared class and it has appropriate

// constructors and operators

variable = a;

}

};

在这里,编译器按照以下步骤创建类型为MyClass

1的对象 。类型的构造函数首先被称为“ a”。 

2.在MyClass()构造函数的内部调用“类型”的赋值运算符进行赋值 

    变量= a;

3.然后,由于“类型”的析构函数超出范围,因此最终将其称为“ a”。

现在考虑使用具有初始化程序列表的MyClass()构造函数的相同代码 

// With Initializer List

class MyClass {

Type variable;

public:

MyClass(Type a):variable(a) { // Assume that Type is an already

// declared class and it has appropriate

// constructors and operators

}

};

使用“初始化程序列表”,编译器将执行以下步骤: 

1.调用“ Type”类的参数化构造函数进行初始化:变量(a)。初始化程序列表中的参数用于直接复制构造“变量”。 

2.“类型”的析构函数被称为“ a”,因为它超出了范围。

从本示例可以看出,如果在构造函数主体内使用赋值,则有三个函数调用:构造函数+析构函数+一个附加赋值运算符调用。如果我们使用Initializer List,则只有两个函数调用:复制构造函数+析构函数调用。


以上就是今天的全部内容了。每日分享小知识,希望对你有帮助~

另外如果你想更好的提升你的编程能力,学好C语言C++编程!弯道超车,快人一步!笔者这里或许可以帮到你~

C语言C++编程学习交流圈子,QQ群:765803539点击进入】微信公众号:C语言编程学习基地

分享(源码、项目实战视频、项目笔记,基础入门教程)

欢迎转行和学习编程的伙伴,利用更多的资料学习成长比自己琢磨更快哦!

编程学习视频分享:

C/C++编程笔记:什么时候在C++中使用初始化列表?_第2张图片

 

你可能感兴趣的:(C++,c++,初始化列表,编程,C++编程知识)