vector容器的用法以及动态数组时间:2021-04-02 05:13:25 vector容器不必去管大小 string申明的数组已经是动态的了 若是int类型的话,需要 cin>>N; int a[N]会出错 ,必须是int *p = new int[N] 然后再手动释放空间