C++动态数组
#include<stdio.h>#include<malloc.h>
#include<stdlib.h>
int *ywshuzumalloc(int n) //一维数组分配
{
int *a;
a=(int *)malloc(sizeof(int)*n);
return a;
} why not
int *ywshuzumalloc(int n) //一维数组分配
{
returnmalloc(sizeof(int)*n);
}
另外
1 为什么要用函数包装?
2 这样做容易忘记delete
3 C++的数组没有维数的概念
页:
[1]