标题:如何在C++中使用realloc
只看楼主
wangwang168
Rank: 1
等 级:新手上路
帖 子:48
专家分:0
注 册:2007-5-8
 问题点数:0 回复次数:0 
如何在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;
}

搜索更多相关主题的帖子: realloc 
2007-05-21 17:12



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-141222-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.100581 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved