如何将std :: string转换为C ++中的LPCWSTR(Unicode)

我正在寻找一种方法,或将std :: string转换为LPCWSTR的代码片段

感谢您的MSDN文章的链接。 这正是我所期待的。

std::wstring s2ws(const std::string& s) { int len; int slength = (int)s.length() + 1; len = MultiByteToWideChar(CP_ACP, 0, s.c_str(), slength, 0, 0); wchar_t* buf = new wchar_t[len]; MultiByteToWideChar(CP_ACP, 0, s.c_str(), slength, buf, len); std::wstring r(buf); delete[] buf; return r; } std::wstring stemp = s2ws(myString); LPCWSTR result = stemp.c_str(); 

解决scheme实际上比其他任何build议都容易得多:

 std::wstring stemp = std::wstring(s.begin(), s.end()); LPCWSTR sw = stemp.c_str(); 

最重要的是,它是独立于平台的。 h2h 🙂

如果您在ATL / MFC环境中,则可以使用ATL转换macros:

 #include <atlbase.h> #include <atlconv.h> . . . string myStr("My string"); CA2W unicodeStr(myStr); 

您可以使用unicodeStr作为LPCWSTR。 unicodestring的内存在堆栈上创build,然后释放unicodeStr的析构函数。

而不是使用std :: string,你可以使用std :: wstring。

编辑:对不起,这不是更多的解释,但我必须运行。

使用std :: wstring :: c_str()

 string s = "Hello World"; std::wstring stemp = std::wstring(s.begin(), s.end()); LPCWSTR title =(LPCWSTR) stemp.c_str(); LPCWSTR wname =(LPCWSTR) "Window"; HINSTANCE hInst = GetModuleHandle(0); WNDCLASS cls = { CS_HREDRAW|CS_VREDRAW, WndProc, 0, 0, hInst, LoadIcon(hInst,MAKEINTRESOURCE(IDI_APPLICATION)), LoadCursor(hInst,MAKEINTRESOURCE(IDC_ARROW)), GetSysColorBrush(COLOR_WINDOW),0,wname }; RegisterClass( &cls ); HWND window = CreateWindow(wname,title,WS_OVERLAPPEDWINDOW|WS_VISIBLE,64,64,640,480,0,0,hInst,0); MSG Msg; while(GetMessage(&Msg,0,0,0)) { TranslateMessage(&Msg); DispatchMessage(&Msg); } return Msg.wParam;