其他分享
首页 > 其他分享> > C lpcwstr到wstring

C lpcwstr到wstring

作者:互联网

我想在C(VS 2010)中将LPCWSTR转换为wstring.
我想在OutputDebugStringW()中使用它.

谢谢.

解决方法:

只需将LPCWSTR传递给wstring的构造函数,如下所示:

LPCWSTR str=L"fun";
wstring str2(str);

标签:c,wstring,lpcwstr
来源: https://codeday.me/bug/20191009/1879120.html