动态分配内存malloc()和free()

作者:追风剑情 发布于:2019-11-25 19:41 分类:C

示例

  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. double * ptd;
  15. int max;
  16. int number;
  17. int i = 0;
  18.  
  19. puts("What is the maximum number of type double entries?");
  20. if (scanf("%d", &max) != 1)
  21. {
  22. puts("Number not correctly entered -- bye.");
  23. exit(EXIT_FAILURE);//程序异常中止
  24. }
  25.  
  26. //动态分配内存
  27. /*在C中,不一定要使用强制类型转换(double *),但是在C++中必须使用。
  28. 所以,使用强制类型转换更容易把C程序转换为C++程序。*/
  29. ptd = (double *)malloc(max * sizeof(double));
  30. if (ptd == NULL)
  31. {
  32. puts("Memory allocation failed. Goodbye.");
  33. exit(EXIT_FAILURE);//程序异常中止
  34. }
  35.  
  36. //EXIT_FAILURE表示异常中止
  37. //EXIT_SUCCESS表示程序正常结束
  38. //一些操作系统(包括UNIX、Linux和Windows)还接受一些表示
  39. //其他运行错误的整数值.
  40.  
  41. /* ptd现在指向有max个元素的数组 */
  42. puts("Enter the values (q to quit):");
  43. while (i < max && scanf("%lf", &ptd[i]) == 1)
  44. ++i;
  45. printf("Here are your %d entries:\n", number = i);
  46. for (i = 0; i < number; i++)
  47. {
  48. printf("%7.2f ", ptd[i]);
  49. if (i % 7 == 6)
  50. putchar('\n');
  51. }
  52. if (i % 7 != 0)
  53. putchar('\n');
  54. puts("Done.");
  55.  
  56. //释放动态分配的内存
  57. /*free()函数释放由malloc()分配的内存。free()只释放其参数指向的内存块。
  58. 一些操作系统在程序结束时会自动释放动态分配的内存,但是有些系统不会。
  59. 为保险起见,请使用free(),不要依赖操作系统来清理。
  60. 不能用free()释放通过其他方式(如,声明一个数组)分配的内存。*/
  61. free(ptd);
  62.  
  63. system("pause");
  64. return 0;
  65. }

运行测试

11111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号