[TOC] 目录 基础概念 C++动态数组 内容 基础概念 C++动态数组 int n = 0; int *a = new int[n];// 申请动态数组 delete[] a; // 删除动态申请的空间