16
wstring을 문자열로 변환하는 방법은 무엇입니까?
문제는 wstring을 문자열로 변환하는 방법입니다. 다음 예가 있습니다. #include <string> #include <iostream> int main() { std::wstring ws = L"Hello"; std::string s( ws.begin(), ws.end() ); //std::cout <<"std::string = "<<s<<std::endl; std::wcout<<"std::wstring = "<<ws<<std::endl; std::cout <<"std::string = "<<s<<std::endl; } 주석 처리 된 출력은 다음과 같습니다. std::string = Hello std::wstring = Hello std::string = …