c# string与c++ std::string的互相转换
Posted 小哈龙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# string与c++ std::string的互相转换相关的知识,希望对你有一定的参考价值。
本文转载自:C#DLL托管c++ (CLI) String^ 到 std::string 的相互转化_成魔的羔羊的博客-CSDN博客
当使用C++/CLI包装C++本地代码时,常常需要将System::String转换为std::string或者char*以调用native C++函数。.net环境中的字符串是unicode的,占2个字节,而很多native C++函数都没有考虑unicode,这种转换不仅仅是2字节转1字节,同时也涉及到字符集的转换。
#include "stdafx.h"
#include <string>
#include <msclr\\marshal_cppstd.h>
#include <iostream>
using namespace msclr::interop;
using namespace System;
int main(array<System::String ^> ^args)
// 为了可以打印wstring到控制台
std::wcout.imbue(std::locale("chs"));
// 声明两个string
std::string strOld = "阿里路亚!"; //std的string
String^ strNew = "耶稣基督!"; //cli的string.
//std::string转cli的string
String^ stdToCli = marshal_as<String^>(strOld);
Console::WriteLine(stdToCli);
//cli的string转std::string
std::string cliToStd = marshal_as<std::string>(strNew);
std::cout << cliToStd << std::endl;
//cli的string转std::wstring
std::wstring cliToWstring = marshal_as<std::wstring>(strNew);
std::wcout << cliToWstring << std::endl;
以上是关于c# string与c++ std::string的互相转换的主要内容,如果未能解决你的问题,请参考以下文章
将 System::String^ (C# 字符串)转换为 C++ std::string [重复]
在 c++ 中为非托管 c# dll 使用 std::string