C .NET에서 System::String을 std::string으로 변환
C .NET에서 System::String을 std::string으로 변환 std::string은 Microsoft .NET Framework에서 제공하는 마샬링 기능을 사용하여 얻을 수 있습니다.
System::String을 std::string으로 변환하려면 msclr::interop::marshal_context 클래스에서 제공하는 marshal_as 메서드를 사용할 수 있습니다. 이 메소드는 관리되는 문자열을 입력으로 사용하고 해당 표준 문자열을 반환합니다.
다음은 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>
으로 변환하는 방법에 대한 예입니다. 코드 조각은 필요한 헤더를 가져오고 관리되는 문자열을 선언한 다음 marshal_as 메서드를 사용하여 관리되는 문자열을 표준으로 변환합니다. string.
msclr::interop 네임스페이스는 최신 버전의 .NET에서만 사용할 수 있다는 점에 유의하는 것이 중요합니다. 이전 버전을 사용하는 경우 msclr::interop::marshal_as_string 메서드를 대신 사용할 수 있습니다.
관리 코드와 비관리 코드 간의 다양한 다른 유형 변환에 대한 자세한 내용은 다음 MSDN 문서를 참조하세요. https://docs.microsoft.com/en-us/dotnet/framework/unmanaged-api/interop/marshaling-data-with-platform-invoke
위 내용은 C .NET에서 System::String을 std::string으로 어떻게 변환합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!