std::codecvt<InternT,ExternT,StateT>::in, std::codecvt<InternT,ExternT,StateT>::do_in
定义在头文件 <locale> 中 |
||
public: result in( StateT& state, |
(1) | |
protected: virtual result do_in( StateT& state, |
(2) | |
do_in
。codecvt
方面定义了转换,则将源范围 [
from,
from_end)
中的外部字符转换为内部字符,并将结果放置在从 to 开始的后续位置中。转换不超过 from_end - from 个外部字符,并且写入不超过 to_end - to 个内部字符。将 from_next 和 to_next 指向成功转换的最后一个元素的下一个位置。如果此 codecvt
方面没有定义转换,则不会转换任何字符。 to_next 将被设置为等于 to,state 不变,并且将返回 std::codecvt_base::noconv。
do_in(state, from, from_end, from_next, to, to + 1, to_next) 必须返回 ok
,如果
- 此
codecvt
方面由 basic_filebuf 使用,并且 - do_in(state, from, from_end, from_next, to, to_end, to_next) 将返回
ok
,其中 to != to_end.
内容 |
[编辑] 返回值
类型为 std::codecvt_base::result 的值,指示以下成功状态
ok
|
转换完成 |
partial
|
输出缓冲区空间不足或源缓冲区意外结束 |
error
|
遇到无法转换的字符 |
noconv
|
此方面是非转换的,没有写入输出 |
非转换的专门化 std::codecvt<char, char, std::mbstate_t> 始终返回 std::codecvt_base::noconv。
[编辑] 注释
要求 from <= from_end && to <= to_end,并且 state 既可以表示初始移位状态,也可以通过转换序列中的前一个字符获得。
对 state 的影响故意未指定。在标准方面,它用于维护移位状态,就像调用 std::mbsrtowcs 时一样,因此它会更新以反映最后一个处理的外部字符之后的转换状态,但用户定义的方面可以自由地使用它来维护任何其他状态,例如计算遇到的特殊字符的数量。
[编辑] 示例
#include <iostream> #include <locale> #include <string> int main() { std::locale::global(std::locale("en_US.utf8")); auto const& f = std::use_facet<std::codecvt<wchar_t, char, std::mbstate_t>> (std::locale()); std::string external = "z\u00df\u6c34\U0001d10b"; // or u8"zß水𝄋" // or "\x7a\xc3\x9f\xe6\xb0\xb4\xf0\x9d\x84\x8b" // note that the following can be done with wstring_convert std::mbstate_t mb = std::mbstate_t(); // initial shift state std::wstring internal(external.size(), '\0'); const char* from_next; wchar_t* to_next; f.in(mb, &external[0], &external[external.size()], from_next, &internal[0], &internal[internal.size()], to_next); // error checking skipped for brevity internal.resize(to_next - &internal[0]); std::wcout << L"The string in wide encoding: " << internal << '\n'; }
输出
The string in wide encoding: zß水𝄋
[编辑] 缺陷报告
以下行为更改的缺陷报告被追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 76 | C++98 | 不清楚转换是否需要 支持一次生成一个内部字符 |
仅在使用时才需要 由 basic_filebuf |
[编辑] 参见
[virtual] |
从关联的文件中读取 ( std::basic_filebuf<CharT,Traits> 的虚拟受保护成员函数) |
将字节字符串转换为宽字符串 ( std::wstring_convert<Codecvt,Elem,Wide_alloc,Byte_alloc> 的公共成员函数) | |
在给定状态下,将窄多字节字符字符串转换为宽字符串 (函数) | |
[virtual] |
将字符串从 InternT 转换为 ExternT ,例如写入文件时(虚拟受保护成员函数) |