首页 >后端开发 >C++ >如何在 C .NET 中高效地在 System::String 和 std::string 之间进行转换?

如何在 C .NET 中高效地在 System::String 和 std::string 之间进行转换?

Susan Sarandon
Susan Sarandon原创
2024-10-30 21:12:03752浏览

How to Efficiently Convert Between System::String and std::string in C   .NET?

使用 Marshal 类在 System::String 和 std::string 之间进行转换

在 C .NET 中的 System::String 之间进行转换C 中的 std::string 是一项常见任务。 MS 提供的 marshal_context 类提供了一种干净高效的方法来实现此目的。

语法:

<code class="CPP">msclr::interop::marshal_context context;
std::string standardString = context.marshal_as<std::string>(managedString);</code>

示例:

<code class="CPP">#include "stdafx.h"
#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>

优点:

  • 与手动内存管理相比,marshal_context 类提供了额外的安全性和异常处理功能。
  • 语法简洁、简单

替代转换

答案引用的MSDN文章还提供了其他转换方法,例如:

  • 使用 COM 互操作编组函数,例如 SysStringToBSTR。
  • 将 MarshalAs 属性与平台调用函数结合使用。

以上是如何在 C .NET 中高效地在 System::String 和 std::string 之间进行转换?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn