C/C++动态申请空间

举报
IM_STONE 发表于 2020/12/29 00:40:06 2020/12/29
【摘要】 C语言中用malloc/free; C++里用new/delete; 1:C语言动态申请一维数组: #include<stdio.h> #include<stdlib.h> int main() { int i=0; int m=9; int *p = (int*)malloc(sizeof(int)*m); for(;i<m; ++i...

C语言中用malloc/free; C++里用new/delete;

1:C语言动态申请一维数组:

#include<stdio.h>
#include<stdlib.h>
int main()
{ int i=0; int m=9; int *p = (int*)malloc(sizeof(int)*m); for(;i<m; ++i) { p[i] =i; } for(i=0;i<m; ++i) { printf("%d ",p[i]); } free(p); return 0;
}
  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

运行结果 0 1 2 3 4 5 6 7 8 请按任意键继续…
2:C语言动态申请二维数组

#include<stdio.h>
#include<stdlib.h>
#include<vld.h>
int main()
{ int i=0; int j=0; int tmp = 0; int m=4;//行 int n  = 5;//列 int **p = (int**)malloc(sizeof(int*)*m); //先动态申请行 for(;i<m; ++i) { p[i] = (int *)malloc(sizeof(int)*n); //在动态申请列;p[i]的类型是int*  即整型指针; } for(i=0;i<m; ++i) //给二维数组赋值 { for(j=0;j<n;++j) { p[i][j] = tmp; tmp++; } } for(i=0;i<m; ++i)//显示二维数组的值 { for(j=0;j<n;++j) { printf("%4d  ",p[i][j]); } printf("\n"); } for(i=0; i<m;++i) { free(p[i]); } free(p);//必不可少 return 0;
}
  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42

运行结果:
0 1 2 3 4
5 6 7 8 9
10 11 12 13 14
15 16 17 18 19
请按任意键继续…
如果没有最后free(p);实际上会造成内存泄漏的;用内存检测工具vld检测结果如下:
WARNING: Visual Leak Detector detected memory leaks!(检测到内存泄漏)
———- Block 72 at 0x01014220: 16 bytes ———-
Call Stack:
Data:
70 42 01 01 00 3D 01 01 50 3D 01 01 A0 3D 01 01 pB…=.. P=…=..

Visual Leak Detector detected 1 memory leak.

而加上free(p)后,结果如下:
No memory leaks detected.(未发现内存泄漏)

3:C++动态申请一维数组

#include<iostream>
#include<vld.h>//内存检测工具,不包含也可以运行
using namespace std;

int main()
{ int i=0; int m=9; int *p = new int[m];//申请空间 for(i=0;i<m;++i)//赋值 { p[i] =i; } for(i=0; i<m; ++i)//显示 { cout<<p[i]<<" "; } cout<<endl; delete []p;//释放内存 [] 里没有任何数字 return 0;
}
  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

4:动态申请二维数组

#include<iostream>
#include<iomanip>
#include<vld.h>
using namespace std;

int main()
{ int m=4; int n=5; int i=0; int j=0; int tmp=0; //方法一 int **p = new int*[m]; for(i=0;i<m;++i) { p[i] = new int[n]; } for(i=0;i<m;++i) { for(j=0;j<n;++j) { p[i][j] = tmp; tmp++; } } for(i=0;i<m;++i) { for(j=0;j<n;++j) { cout<<p[i][j]<<setw(3); } cout<<endl; } for(i=0;i<m;++i) { delete []p[i]; } delete p; //方法2 int (*q)[10] = new int[3][10]; for(int i=0;i<3;++i) { for(int j=0;j<10;++j) { q[i][j] = tmp++; } } for(int i=0;i<3;++i) { for(int j=0;j<10;++j) { cout<<q[i][j]<<setw(3); } cout<<endl; } delete []q;//与第一种方法不一样 return 0;
}
  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68

请多多指教!!!

文章来源: blog.csdn.net,作者:IM-STONE,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/doubleintfloat/article/details/52213158

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。