使用 StringToHGlobalAnsi 在函数中将 System::String 转换为 char*
我需要在 CLI 包装器中进行从 System::String^
到 char*
的多次转换,并且我已经编写了一个函数,但在返回之前无法释放堆空间char*
! (随着时间的推移出现堆错误)
转换
char* ManagedReaderInterface::SystemStringToChar(System::String ^source)
{
char* str2 = (char*)(void*)Marshal::StringToHGlobalAnsi(source);
return str2;
}
我使用的函数如下:
GetSomething(SystemStringToChar(str), value);
有什么想法吗?!
I need many conversions in my CLI wrapper from System::String^
to char*
and I've written a function, but I can't free the heap space before returning the char*
! (get heap errors over the time)
Conversion
char* ManagedReaderInterface::SystemStringToChar(System::String ^source)
{
char* str2 = (char*)(void*)Marshal::StringToHGlobalAnsi(source);
return str2;
}
I use the function like:
GetSomething(SystemStringToChar(str), value);
Any ideas?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最终,需要有人负责释放存储返回值的内存。它不能是您的转换函数,因为它会在您想要释放内存之前返回。
如果您使用
std::string
而不是原始char*
,这一切都会变得更容易。试试这个:Ultimately, someone needs to be responsible for freeing the memory that your return value is stored in. It can't be your conversion function, as it will return before you want to free the memory.
This is all made easier if you use
std::string
instead of rawchar*
s. Try this:在每一个方法中:
它现在应该是干净的!
In every single method:
It should be clean now!