标签:
数组定义的时候就要确定大小
int arr1[10];//定义一个10个元素的数组
int arr2[10] = {1, 2, 3, 4};
int arr22[20]{1,2,3,4};
int arr3[] = {1, 2, 3, 4};
int arr33[]{1,2,3,4,5};
int n;
int arr[n];//错误的初始化,n只能是常量,不能是变量
平常的数组的限制
int n;
cin >> n;
int *p = new int[n];//n不确定
int *p = new int[10];
动态数组的使用
int *p = new int[n]();
p[0] = 1;
p[1] = 2;
p[2] = 3;
cout << p[0] << endl;
cout << p[1] << endl;
//遍历动态数组
for(int * q = p; q != p + n; q++) {
cout << *q <<endl;
}
delete []p;//删除,回收内存
标签:
原文地址:http://blog.csdn.net/ttf1993/article/details/45914923