这是使用std::codecvt_utf8<>
facet 转换wchar_t
为 UTF-8 的代码片段。使用 Visual Studio 2012,我的期望没有得到满足(请参阅代码末尾的条件)。我的期望错了吗?为什么?或者这是 Visual Studio 2012 库问题?
#include <locale>
#include <codecvt>
#include <cstdlib>
int main ()
{
std::mbstate_t state = std::mbstate_t ();
std::locale loc (std::locale (), new std::codecvt_utf8<wchar_t>);
typedef std::codecvt<wchar_t, char, std::mbstate_t> codecvt_type;
codecvt_type const & cvt = std::use_facet<codecvt_type> (loc);
wchar_t ch = L'\u5FC3';
wchar_t const * from_first = &ch;
wchar_t const * from_mid = &ch;
wchar_t const * from_end = from_first + 1;
char out_buf[1];
char * out_first = out_buf;
char * out_mid = out_buf;
char * out_end = out_buf + 1;
std::codecvt_base::result cvt_res
= cvt.out (state, from_first, from_end, from_mid,
out_first, out_end, out_mid);
// This is what I expect:
if (cvt_res == std::codecvt_base::partial
&& out_mid == out_end
&& state != 0)
;
else
abort ();
}
这里的期望是该out()
函数一次输出一个字节的 UTF-8 转换,但上述if
条件的中间在 Visual Studio 2012 中为 false。
更新
失败的是out_mid == out_end
和state != 0
条件。基本上,我希望至少产生一个字节,并将必要的状态存储在state
变量中,以使 UTF-8 序列的下一个字节可产生。