Les types d'initialisation de tableau C++ incluent : 1. Initialisation d'un tableau d'entiers ; 2. Initialisation d'une chaîne 3. Initialisation par défaut d'un tableau ;
Les types d'initialisation de tableau C++ sont :
1. Initialisation d'un tableau d'entiers - initialisation de la pile.
//默认初始化 int a[5] = {}; //[0, 0, 0, 0, 0] //全部初始化为0 int a[5] = {0}; //[0, 0, 0, 0, 0] //c++11新写法 int a[5]{}; //[0, 0, 0, 0, 0] //注意,想要整型数组 全部初始化为1的时候不能粗暴的设置为 int a[5] = {1}; //[1, 0, 0, 0, 0] // 因为 数组初始化列表中的元素个数小于指定的数组长度时, 不足的元素以默认值填补。 //可以分别赋值 int a[5] = {1,1,1,1,1}; //[1,1,1,1,1]
2. Initialisation de chaîne - l'initialisation de la pile
est fondamentalement la même que l'initialisation entière, et le constructeur
string *str = string[5]; //调用5次默认构造函数 string *str1 = string[5]{"aaa"}; //数组中的第一个元素调用 string::string(const char *) 进行初始化。后面四个调用 默认构造函数
sera appelé 3. Initialisation par défaut des tableaux
Si la liste d'initialisation n'est pas explicitement indiquée, alors les types de base ne seront pas initialisés (sauf les variables globales et les variables statiques), et toute la mémoire sera données sales ; et automatiquement Le type de classe défini appellera le constructeur par défaut pour chaque élément pour l'initialisation
int a[5]{}; a[6]; //32766 a[10]; //1474921429 // Xcode会提示 Array index 10 is past the end of the array (which contains 5 elements)。虽然不会爆红,但是Xcode提示越界了。这在程序中也是需要特别注意的,越界时会取到脏数据。 string str[5]; //["","","","",""] string str1[5] = {"","2","",""}; //["","2","',"",""] string str2[5] = {"a"}; //["a","","","",""]
4. Initialisation du tas du tableau
int *a = new int[5]; //脏数据数组 int *str = new string[5]; //空字符串数组 int *b = new int[5]{0}; // [0,0,0,0,0] int *str1 = new string[5] {"aaa"}; //["aaa","","","",""] //以上几行代码遵循栈中数组的初始化规则,除此之外这里还有一个新语法 int *c = new int[5](); //[0,0,0,0,0] //该语法后面的一对圆括号,表示使用默认值初始化整个数组,所以对于类类型来说,new string[5] 与 new string[5]() 是等价的,都会调用默认构造函数进行初始化;但是对于基本类型就不同了。new int[5]根本不会初始化,而new int[5]()则会使用int()的值,即0进行初始化。
[Apprentissage associé recommandé : Vidéo du didacticiel du langage C]
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!