如何给Lpwstr赋值 日期:2017-03-15 22:45:33 人气:1 如何给Lpwstr赋值 LPWSTR ABC=_T("字符串");LPWSTR是Unicode字符,所以最好用_T("字符串") CString str(_T("abc")); LPWSTR pStr = str.GetBuffer(); str.ReleaseBuffer;