45

此代码使用 Visual C++ 11 编译并在 Windows 7 上按预期运行,但无法使用 Windows 7 上的 MinGW 4.7.0 或 Linux 上的 gcc 4.8.0 进行编译。-std=c++11使用标志编译

#include <codecvt>
#include <string>

// convert UTF-8 string to wstring
std::wstring utf8_to_wstring (const std::string& str)
{
    std::wstring_convert<std::codecvt_utf8<wchar_t>> myconv;
    return myconv.from_bytes(str);
}

// convert wstring to UTF-8 string
std::string wstring_to_utf8 (const std::wstring& str)
{
    std::wstring_convert<std::codecvt_utf8<wchar_t>> myconv;
    return myconv.to_bytes(str);
}

错误:

codecvt:没有这样的文件或目录。

4

4 回答 4

31

GCC 拒绝这段代码的原因很简单:libstdc++ 还不支持<codecvt>

C++11 支持状态页面证实了这一点:

22.5 标准代码转换方面 N

于 2013-03-25T12:38:56.017 回答
23

这个问题是在大约 3 年前提出的,我很惊讶我在使用带有新更新的 Ubuntu 14.04 时也遇到了同样的问题。

第二个惊喜,@Fanael 提供的链接现在显示:

22.5 标准代码转换方面Y

所以我搜索了哪个版本的 GCC 将完全实现 C++11。事实证明,在 GCC 5 中添加了完全支持:

https://gcc.gnu.org/gcc-5/changes.html

完全支持 C++11,包括以下新特性:

...

用于 Unicode 转换的语言环境方面;

...

如果我有足够的声誉,我会很乐意对答案发表评论:)

于 2016-03-16T10:17:42.827 回答
22

使用Boost.Locale的解决方法:

#include <boost/locale/encoding_utf.hpp>
#include <string>

using boost::locale::conv::utf_to_utf;

std::wstring utf8_to_wstring(const std::string& str)
{
    return utf_to_utf<wchar_t>(str.c_str(), str.c_str() + str.size());
}

std::string wstring_to_utf8(const std::wstring& str)
{
    return utf_to_utf<char>(str.c_str(), str.c_str() + str.size());
}  
于 2015-03-05T10:18:47.717 回答
2

它适用于带有 gcc 5.3 的 Ubuntu 14.04。

于 2016-08-08T16:40:13.877 回答