动态内存分配和变长数组

作者:追风剑情 发布于:2019-11-27 20:07 分类:C

       变长数组(VLA)和调用malloc()在功能上有些重合。例如,两者都可用于创建在运行时确定大小的数组。不同的是,变长数组是自动存储类型。因此,程序在离开变长数组所在的块时,变长数组占用的内存空间会被自动释放,不必使用free()。另一方面,用malloc()创建的数组不必局限在一个函数内访问。例如,可以这样做:被调函数创建一个数组并返回指针,供主调函数访问,然后主调函数在末尾调用free()释放之前被调函数分配的内存。另外,free()所用的指针变量可以与malloc()的指针变量不同,但是两个指针必须储存相同的地址。但是,不能释放同一块内存两次。

       对多维数组而言,使用变长数组更方便。当然,也可以用malloc()创建二维数组,但是语法比较繁琐。如果编译器不支持变长数组特性,就只能固定二维数组的维度。

示例

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <ctype.h>
  7. //malloc()、free()
  8. #include <stdlib.h>
  9.  
  10. //argc: 参数个数 argv[]: 参数数组
  11. //int main(int argc, char **argv)
  12. int main(int argc, char *argv[])
  13. {
  14. int n = 5;
  15. int m = 6;
  16. int * pi;
  17. //int ar2[n][m];//变长数组
  18. int (* p2)[6]; //C99之前的写法
  19. //int (* p3)[m]; //要求支持变长数组
  20. p2 = (int(*)[6]) malloc(n * 6 * sizeof(int)); //n x 6 数组
  21. //p3 = (int(*)[m]) malloc(n * m * sizeof(int)); //n x m 数组 (要求支持变长数组)
  22. pi = (int *)malloc(n * sizeof(int));
  23. pi[2] = -5;
  24.  
  25. for (int i = 0; i < n; i++)
  26. for (int j = 0; j < m; j++)
  27. p2[i][j] = i * m + j;
  28.  
  29. for (int i = 0; i < n; i++) {
  30. for (int j = 0; j < m; j++) {
  31. printf("%d ", p2[i][j]);
  32. }
  33. putchar('\n');
  34. }
  35. system("pause");
  36. return 0;
  37. }

运行测试

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号