在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中文網其他相關文章!