C++/CLI 中无法识别 LPVOID

发布于 2024-08-30 16:53:47 字数 490 浏览 2 评论 0原文

我正在尝试使用以下代码将本机字符串转换为 C++\CLI 中的托管字符串:

System::String^ NativeToDotNet( const std::string& input )
{
    return System::Runtime::InteropServices::Marshal::PtrToStringAnsi( (static_cast<LPVOID>)( input.c_str() ) );
}

我最初找到了代码 这里

但是当我尝试构建它时会抛出错误:

syntax error : identifier 'LPVOID'

知道如何解决这个问题吗?

I'm trying to use the following code to convert a native string to a managed string in C++\CLI:

System::String^ NativeToDotNet( const std::string& input )
{
    return System::Runtime::InteropServices::Marshal::PtrToStringAnsi( (static_cast<LPVOID>)( input.c_str() ) );
}

I originally found the code here:

But when I try to build it throws the error:

syntax error : identifier 'LPVOID'

Any idea how to fix this?

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

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

发布评论

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

评论(3

雪花飘飘的天空 2024-09-06 16:53:47

这种情况经常以各种形式出现 - 最简单的答案是:不要编写自己的函数,请参见此处:
http://msdn.microsoft.com/en-us/library/bb384865。 ASPX

This crops up quite often in various guises - the simplest answer is: don't write your own function, see here:
http://msdn.microsoft.com/en-us/library/bb384865.aspx

别再吹冷风 2024-09-06 16:53:47

LPVOID 只是 void * 的别名。 LP 代表“长指针”,这是“机器大小指针”的一种旧式说法,根据进程的不同,可以是 32 位,也可以是 64 位。

只需使用
static_cast

在一个或多个头文件的某处,有一个
#define LPVOID (void *)

您尚未包含这样的文件。

LPVOID is just an alias for void *. LP stands for "long pointer," which is an old-style way of saying "machine-sized pointer", either 32 or 64 bit depending on the process.

Just use
static_cast<void *>

In one or more header files somewhere, there's a
#define LPVOID (void *)

You haven't included such a file.

红焚 2024-09-06 16:53:47

强制转换为(相同的cv-qualifiersvoid*始终是隐式可能的,您永远不应该看到强制转换尝试这样做。该错误是由于尝试使用 static_cast 删除 const

尝试这样做,它也可以正确处理嵌入的 NUL 字符:

using System::Runtime::InteropServices::Marshal::PtrToStringAnsi;
return PtrToStringAnsi( const_cast<char*>(&input[0]), input.size() );

const_cast解决了 .NET 中缺乏常量正确性的愚蠢问题

Casting to (same cv-qualifiers) void* is always implicitly possible, you should never see a cast trying to do so. The error is from trying to remove const with a static_cast

Try this, which also handles embedded NUL characters correctly:

using System::Runtime::InteropServices::Marshal::PtrToStringAnsi;
return PtrToStringAnsi( const_cast<char*>(&input[0]), input.size() );

The const_cast<char*> takes care of the stupidity which is the lack of const-correctness in .NET

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