51Testing软件测试论坛

标题: C++动态数组 [打印本页]

作者: wwtsanmao    时间: 2009-12-6 23:21
标题: 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
why not
int *ywshuzumalloc(int n)   //一维数组分配   
{   
    return  malloc(sizeof(int)*n);   
}
另外
1 为什么要用函数包装?
2 这样做容易忘记delete
3 C++的数组没有维数的概念




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2