wwtsanmao 发表于 2009-12-6 23:21:43

C++动态数组

#include<stdio.h>   
#include<malloc.h>   
#include<stdlib.h>   

int *ywshuzumalloc(int n)   //一维数组分配   
{   
    int *a;   
    a=(int *)malloc(sizeof(int)*n);   
    return a;   
}

lzp729 发表于 2009-12-9 00:45:56

why not
int *ywshuzumalloc(int n)   //一维数组分配   
{   
    returnmalloc(sizeof(int)*n);   
}
另外
1 为什么要用函数包装?
2 这样做容易忘记delete
3 C++的数组没有维数的概念
页: [1]
查看完整版本: C++动态数组