当前位置:   article > 正文

【C语言】检测malloc最大能分配多少空间。_c查看malloc大小

c查看malloc大小

方法一:


  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main ()
  4. {
  5. int count = 0;
  6. while(malloc(1<<20))
  7. {
  8. count++;
  9. }
  10. printf("%d\n",count);
  11. return 0;
  12. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

方法二:


  1. #include<stdio.h>
  2. #include <stdlib.h>
  3. int main ()
  4. {
  5. int count = 0;
  6. for(count = 0; ; count++)
  7. {
  8. if( !malloc(1<<20) )
  9. {
  10. break;
  11. }
  12. }
  13. printf("%d\n",count);
  14. return 0;
  15. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

调用malloc函数一次性动态分配一兆的内存空间,当malloc函数返回值为NULL时,说明不能再继续分配。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/333364
推荐阅读
相关标签
  

闽ICP备14008679号