什么时候需要使用FreeHGlobal()?

发布于 2024-12-08 21:06:18 字数 243 浏览 0 评论 0原文

如果我按如下方式使用 Marshal::StringToHGlobalAnsi

char *src = (char *)Marshal::StringToHGlobalAnsi(this->Textbox1->Text).ToPointer();

我需要使用 Marshal::FreeHGlobal() 吗?如果,我应该给出什么参数?

If I use Marshal::StringToHGlobalAnsi as following:

char *src = (char *)Marshal::StringToHGlobalAnsi(this->Textbox1->Text).ToPointer();

Do I need to use Marshal::FreeHGlobal() ? And if, What parameter should I give ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

和我恋爱吧 2024-12-15 21:06:18

根据 MSDN - 是的,您需要调用 FreeHGlobal。 http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.stringtohglobalansi%28v=VS.100%29.aspx

因为此方法分配了所需的非托管内存
字符串,始终通过调用 FreeHGlobal 释放内存

According to MSDN - yes, you need to call FreeHGlobal. http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.stringtohglobalansi%28v=VS.100%29.aspx:

Because this method allocates the unmanaged memory required for a
string, always free the memory by calling FreeHGlobal

谜兔 2024-12-15 21:06:18

按照 C++ 标准,C# 字符串转换函数绝对是可怕的。

C++/CLI 有自己的字符串转换助手,它遵循 RAII 的规则来自动清理临时缓冲区。只需使用:

#include <stdlib.h>
#include <string.h>
#include <msclr\marshal.h>

using namespace msclr::interop;

marshal_context converter;
const char *src = converter.marshal_as<const char*>(Textbox1->Text);

The C# string conversion functions are absolutely horrible by C++ standards.

C++/CLI has its own string conversion helpers, which follow the rules of RAII to automatically clean up temporary buffers. Just use:

#include <stdlib.h>
#include <string.h>
#include <msclr\marshal.h>

using namespace msclr::interop;

marshal_context converter;
const char *src = converter.marshal_as<const char*>(Textbox1->Text);
冷…雨湿花 2024-12-15 21:06:18

附上我的Marshal::FreeHGlobal的2个练习代码
请注意,Marshal::FreeHGlobal() 的参数是不同的!

string CPlusPlusString;
String ^VisualString;
VisualString=textBox1->Text;
CPlusPlusString=(char *)Marshal::StringToHGlobalAnsi(VisualString).ToPointer();
Marshal::FreeHGlobal(Marshal::StringToHGlobalAnsi(VisualString));

char *CString;
String ^VisualString;
VisualString=textBox1->Text;
CString = (char*) Marshal::StringToHGlobalAnsi(VisualString).ToPointer();
Marshal::FreeHGlobal(IntPtr(CString));

Attach my 2 practice code for Marshal::FreeHGlobal
Be noted that the argument of Marshal::FreeHGlobal() are different!!

string CPlusPlusString;
String ^VisualString;
VisualString=textBox1->Text;
CPlusPlusString=(char *)Marshal::StringToHGlobalAnsi(VisualString).ToPointer();
Marshal::FreeHGlobal(Marshal::StringToHGlobalAnsi(VisualString));

char *CString;
String ^VisualString;
VisualString=textBox1->Text;
CString = (char*) Marshal::StringToHGlobalAnsi(VisualString).ToPointer();
Marshal::FreeHGlobal(IntPtr(CString));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文