那段代码会泄漏内存吗?

时间:2015-12-17 18:24:13

标签: c memory-leaks

今天我看到了一些我认为会泄漏内存的代码:

/* realloc example: rememb-o-matic */
#include <stdio.h>      /* printf, scanf, puts */
#include <stdlib.h>     /* realloc, free, exit, NULL */

int main ()
{
  int input,n;
  int count = 0;
  int* numbers = NULL;
  int* more_numbers = NULL;

  do {
     printf ("Enter an integer value (0 to end): ");
     scanf ("%d", &input);
     count++;

     more_numbers = (int*) realloc (numbers, count * sizeof(int));

     if (more_numbers!=NULL) {
       numbers=more_numbers;
       numbers[count-1]=input;
     }
     else {
       free (numbers);
       puts ("Error (re)allocating memory");
       exit (1);
     }
  } while (input!=0);

  printf ("Numbers entered: ");
  for (n=0;n<count;n++) printf ("%d ",numbers[n]);
  free (numbers);

  return 0;
}

我认为在为该指针分配新值之前,程序无法释放指针numbers引用的所有内存。该程序释放numbers仅在循环的最后一次迭代期间指向的内存。

2 个答案:

答案 0 :(得分:2)

以下内容由realloc()函数完成。

  1. 分配的内存的先前内容被复制到新分配
  2. 先前的分配传递给free()
  3. 返回新分配的地址。
  4. 注意:只有realloc()函数能够实际执行新的内存分配时才会出现上述情况。如果新内存分配失败,则返回NULL

    所以发布的代码没有内存泄漏,因为函数:realloc()处理释放旧的内存分配。

答案 1 :(得分:0)

如上所述,上述代码不会导致内存泄漏。由于它是纯C代码,因此您可以使用链表的C实现(如果您不想要C ++ STL结构)。您还将看到在运行时为一个整数分配/释放内存的功能!