C ++ lpcwstr到wstring

时间:2013-04-01 12:50:48

标签: c++ wstring lpcwstr

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

谢谢。

1 个答案:

答案 0 :(得分:7)

好吧,只需将LPCWSTR传递给wstring的构造函数,就像这样:

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