制作于2018年2月7日
int *arr = NULL;
arr = new int[20];
arr[0] = 90;
*(arr + 1) = 80;
delete[] p;
int* p = new int[20];
p[0] = 20;