标签:变长数组 from imp 参考 资料 lan pre malloc tle
#include <cstdio>
#include <cstdlib>
void usePtoImplementVLA(int SIZE)
{
scanf("%d", &SIZE);
int *pVLA = (int *)malloc(sizeof(int) * SIZE);
for (int i = 0; i < SIZE; i++)
scanf("%d", &pVLA[i]);
free(pVLA);
}
1、输入创建指针大小SIZE
。
2、使用sizeof
函数得出需要的空间大小。例:输入10
,sizeof(int) * SIZE
得出40。
3、使用malloc
函数动态分配内存空间。(注:一般的时候,malloc
函数与free
函数连用)
4、用for
循环输入每一个数据。
5、用free
函数释放内存空间。
cplusplus-malloc
百度百科-malloc
cppreference-sizeof
标签:变长数组 from imp 参考 资料 lan pre malloc tle
原文地址:https://www.cnblogs.com/JingWenxing/p/10126561.html