我有 C++ 代码,string
它将包含(AQUA REGIA 的炼金术符号)转换为
u16string
:
#include <string>
#include <codecvt>
#include <locale>
using namespace std;
int main() {
setlocale(LC_ALL, "ru_RU.UTF-8");
string s = "";
wstring_convert<codecvt_utf8<char16_t>, char16_t> converter;
u16string s16 = converter.from_bytes(s);
return 0;
}
请注意,我不使用wstring
或任何istream
.
这给了我std::range_error
:
terminate called after throwing an instance of 'std::range_error'
what(): wstring_convert::from_bytes
使用-std=c++14
.
为什么ideone没有错误,为什么我收到这个错误?
我有arch linux 4.12.13,locale
命令给了我:
LANG=ru_RU.UTF-8
LC_CTYPE="ru_RU.UTF-8"
...
LC_IDENTIFICATION="ru_RU.UTF-8"
LC_ALL=