728x90
반응형
std::string str;
std::wstring wstr;
// string → wstring
wstr.assign(str.begin(), str.end());
// wstring → string
str.assign(wstr.begin(), wstr.end());
728x90
반응형
'Program Language > C & C++' 카테고리의 다른 글
[C++] thread에서 return 값 받기 (promise/future) (2) | 2021.09.30 |
---|---|
[C++] 명시적 링크 (Explcit Linking) 시 GetProcAddress NULL 반환 (0) | 2021.07.29 |
[C++] Implicit Linking/Explicit Linking 장단점 (0) | 2021.04.09 |
[C++] 타입추론 decltype(auto) (0) | 2021.04.09 |
[C++] 가상 파괴자(Virtual Destructor)의 필요성 (0) | 2021.04.09 |