摘要: ```C++ #include std::string unicodeToUTF8(const std::wstring &src) { std::string result; int n = WideCharToMultiByte(CP_UTF8, 0, src.c_str(), -1, 0, 0 阅读全文
posted @ 2023-03-17 14:31 YiXiaoKezz 阅读(19) 评论(0) 推荐(0) 编辑