如何在C++中使用realloc
在C++中new已经可以代替大部分内存分配函数,但是增量分配函数realloc的作用用new来代替略显复杂,所以本人
还是建议适当使用realloc,下面代码中,几个头文件很重要
具体代码如下:
#include<iostream.h>
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
int main(void)
{
char *str;
/* allocate memory for string */
str = (char *) malloc(10);
/* copy "Hello" into string */
strcpy(str, "Hello");
printf("String is %s\n Address is %p\n", str, str);
str = (char *) realloc(str, 20);
printf("String is %s\n New address is %p\n", str, str);
/* free memory */
free(str);
return 0;
}