首頁 > 後端開發 > 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
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板