使用 StringToHGlobalAnsi 在函数中将 System::String 转换为 char*

发布于 2024-11-24 23:32:15 字数 477 浏览 2 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猥琐帝 2024-12-01 23:32:15

最终,需要有人负责释放存储返回值的内存。它不能是您的转换函数,因为它会在您想要释放内存之前返回。

如果您使用 std::string 而不是原始 char*,这一切都会变得更容易。试试这个:

#include <msclr/marshal_cppstd.h>
...     
GetSomething(msclr::interop::marshal_as<std::string>(str).c_str(), value);

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 raw char*s. Try this:

#include <msclr/marshal_cppstd.h>
...     
GetSomething(msclr::interop::marshal_as<std::string>(str).c_str(), value);
我为君王 2024-12-01 23:32:15

在每一个方法中:

IntPtr memHandle = Marshal::StringToHGlobalAnsi(string);

try
{
    char *charStr = static_cast<char*>(memHandle .ToPointer());

    // do something with charStr

    Marshal::FreeHGlobal(memHandle); // free space -> Attention: don't delete it to soon
}
catch
{
    ...
}   

它现在应该是干净的!

In every single method:

IntPtr memHandle = Marshal::StringToHGlobalAnsi(string);

try
{
    char *charStr = static_cast<char*>(memHandle .ToPointer());

    // do something with charStr

    Marshal::FreeHGlobal(memHandle); // free space -> Attention: don't delete it to soon
}
catch
{
    ...
}   

It should be clean now!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文