码迷,mamicode.com
首页 > 其他好文 > 详细

二级指针内存分配

时间:2015-04-11 20:41:56      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

 

      int b[2]={2,3};
      int c[2]={4,5};
 
      int **p,**q,**m;
      q=new int*[2];
      q[0]=new int;
      q[1]=new int;
      **q=c[0];
      *(*q+1)=c[1];
      delete q[0];
      delete q[1];
      delete []q;
 
      q=(int**)malloc(sizeof(int*)*2);
      q[0]=(int*)malloc(sizeof(int));
      q[1]=(int*)malloc(sizeof(int));
      **q=b[0];
      *(*q+1)=b[1];
      free(q[0]);
      free(q[1]);
      free(q);
 
       q=(int**)malloc(sizeof(int*));
       q[0]=(int*)malloc(sizeof(int)*2);
       q[0][0]=c[0];
       q[0][1]=c[1];
       free(q[0]);
       free(q);

二级指针内存分配

标签:

原文地址:http://www.cnblogs.com/hj-blog/p/4418279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!