首页 > 后端开发 > C++ > 正文

如何在 C .NET 中将 System::String 转换为 std::string?

Barbara Streisand
发布: 2024-11-03 00:57:30
原创
464 人浏览过

How do I convert a System::String to a std::string in C   .NET?

在 C .NET 中将 System::String 转换为 std::string

在 C .NET 中,将 System::String 转换为std::string 可以使用 Microsoft .NET Framework 提供的封送功能来实现。

要将 System::String 转换为 std::string,可以使用 msclr 提供的 marshal_as 方法::interop::marshal_context 类。此方法将托管字符串作为输入并返回相应的标准字符串。

以下是如何将 System::String 转换为 std::string 的示例:

<code class="cpp">#include <string>
#include <msclr\marshal_cppstd.h>

using namespace System;

int main(array<System::String ^> ^args)
{
    System::String^ managedString = "test";

    msclr::interop::marshal_context context;
    std::string standardString = context.marshal_as<std::string>(managedString);

    return 0;
}</code>
登录后复制

This代码片段导入必要的标头,声明一个托管字符串,然后使用 marshal_as 方法将托管字符串转换为标准字符串。

需要注意的是,msclr::interop 命名空间最近才可用.NET 的版本。如果您使用的是旧版本,则可以改用 msclr::interop::marshal_as_string 方法。

有关在托管代码和非托管代码之间转换各种其他类型的更多信息,请参阅以下 MSDN 文章: https://docs.microsoft.com/en-us/dotnet/framework/unmanagement-api/interop/marshaling-data-with-platform-invoke

以上是如何在 C .NET 中将 System::String 转换为 std::string?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板