0

我希望能够将从文件中读取的文本转换为多字节字符。我在 Windows 上有以下适用于我的 C++ 代码。当我尝试在 Linux 上编译代码时,虽然它失败了。

#include <locale>
....
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> utfconv;
std::string line;
while (std::getline(infile, line))
{
    std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> utfconv;
    std::wstring widestr = utfconv.from_bytes(line);

这会引发以下错误:

wstring_convert is not a member of std
codecvt_utf8_utf16 is not a member of std
expected primary-expression before wchar_t

我正在使用 GCC Red Hat 4.4.7-4。根据我阅读的内容,我已经导入了“语言环境”,但仍然找不到。

如果 wstring_convert 不可用,我可以做一些等效的事情吗?

4

2 回答 2

3

很可能您的标准设置不正确。std::wstring_convert在 C++11 中首次引入,在 C++17 中弃用,因此需要添加编译器标志-std=c++11-std=c++14.

编辑:刚刚看到你正在使用的 GCC 版本。它已经过时了。如果您下载 GCC 4.9.x 或更高版本,一切都应该正常

于 2018-06-14T23:38:38.423 回答
1

您将不得不使用更新的 GCC 版本。预编译版本是 Developer Toolset 的一部分(作为大多数 Red Hat Enterprise Linux 订阅的一部分提供)或作为 CentOS 软件集合的一部分:

于 2018-06-15T03:58:00.810 回答