string转WString
时间: 2023-11-28 20:42:14 浏览: 56
在C++开发中,有时需要将string类型转换为wstring类型,可以使用以下方法:
1.使用Windows API函数MultiByteToWideChar()和WideCharToMultiByte()进行转换,但这种方法只适用于Windows系统。
2.使用C++11/C++14标准中的std::wstring_convert和std::codecvt_utf8<wchar_t>进行转换,这种方法可以实现跨平台string与wstring互相转换,但是在C++17标准中已经被弃用。
以下是使用std::wstring_convert和std::codecvt_utf8<wchar_t>进行转换的示例代码:
#include <string>
#include <locale>
#include <codecvt>
// convert string to wstring
std::wstring to_wide_string(const std::string& input) {
std::wstring_convert<std::codecvt_utf8<wchar_t>> converter;
return converter.from_bytes(input);
}
// convert wstring to string
std::string to_byte_string(const std::wstring& input) {
std::wstring_convert<std::codecvt_utf8<wchar_t>> converter;
return converter.to_bytes(input);
}
以上代码中,to_wide_string()函数将string类型的input参数转换为wstring类型并返回,to_byte_string()函数将wstring类型的input参数转换为string类型并返回。
阅读全文