0

我最近遇到了一段 C++ 代码,它的类型为 XCHAR*。我想知道这种类型是什么以及如何将 XCHAR* 转换为 std::string。

这将是非常好的人来帮助。

谢谢

4

1 回答 1

1

我有一个我使用的头文件,它在 UTF8(用字母“a”表示)、UTF16(用字母“w”表示)和当前构建使用的任何内容(用字母“t”表示)之间进行转换。假设 chris 说 XCHAR 与 TCHAR 相同,这些函数应该可以正常工作:

inline std::string wtoa(const std::wstring& Text){ 
    std::string s(WideCharToMultiByte(CP_UTF8, 0, Text.c_str(), Text.size(), NULL, NULL, NULL, NULL), '\0');
    s.resize(WideCharToMultiByte(CP_UTF8, 0, Text.c_str(), Text.size(), &s[0], s.size(), NULL, NULL));
    return s;
}
inline std::wstring atow(const std::string& Text) {
    std::wstring s(MultiByteToWideChar(CP_UTF8, 0, Text.c_str(), Text.size(), NULL, NULL), '\0');
    s.resize(MultiByteToWideChar(CP_UTF8, 0, Text.c_str(), Text.size(), &s[0], s.size()));
    return s;
}
#ifdef _UNICODE
inline std::string ttoa(const std::wstring& Text) {return wtoa(Text);}
inline std::wstring atot(const std::string& Text) {return atow(Text);}
inline const std::wstring& ttow(const std::wstring& Text) {return Text;}
inline const std::wstring& wtot(const std::wstring& Text) {return Text;}
typedef std::wstring tstring;
typedef std::wstringstream tstringstream;
#else    
inline const std::string& ttoa(const std::string& Text) {return Text;}
inline const std::string& atot(const std::string& Text) {return Text;}
inline std::wstring ttow(const std::string& Text) {return atow(Text);}
inline std::string wtot(const std::wstring& Text) {return wtoa(Text);}
typedef std::string tstring;
typedef std::stringstream tstringstream;
#endif

用法:

int main() {
    XCHAR* str = ///whatever
    std::string utf8 = ttoa(str);
    std::wstring utf16 = ttow(str);
}

请记住,其中一些返回一个可变右值,一些返回一个 const 左值,但这比您在大多数代码中想象的问题要少。

于 2012-09-10T20:53:44.597 回答