明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1814|回复: 1

[求助]VS.NET2005+CAD2007中,如何为一个字串重新分配内存

[复制链接]
发表于 2007-2-26 01:19:00 | 显示全部楼层 |阅读模式
本帖最后由 作者 于 2007-2-26 17:54:22 编辑

我在程序中定义了一个字串重新分配内存的函数,编译链接均正常。但在CAD调用时却出现严重错误,造成系统崩溃(提示参数类型错误)。这是为何?

struct resbuf *join::strrealloc(struct resbuf *strbuf,TCHAR *word)
{
struct resbuf *ex;
ex=entitem(strbuf,1);
if(_tcslen(ex->resval.rstring)<(_tcslen(word))) //重新分配内存
ex->resval.rstring=(TCHAR *)realloc(ex->resval.rstring,_tcslen(word)+1);
_tcscpy(ex->resval.rstring,word);
return strbuf;

}
 楼主| 发表于 2007-4-4 00:21:00 | 显示全部楼层

呵!终于解决问题了。

struct resbuf *join::strrealloc(struct resbuf *strbuf,TCHAR *word)
{
struct resbuf *ex;
ex=entitem(strbuf,1);
if(_tcslen(ex->resval.rstring)<(_tcslen(word))) //重新分配内存
ex->resval.rstring=(TCHAR *)realloc(ex->resval.rstring,_tcslen(word)+1);
_tcscpy(ex->resval.rstring,word);
return strbuf;
}

将上面红色字语句改为:

ex->resval.rstring=new TCHAR[_tcslen(word)+1];

还应在最后一行加上:delete [_tcslen(word)+1]ex->resval.rstring;

一切ok

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 19:22 , Processed in 0.178690 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表