template <class charT, class InputIterator = istreambuf_iterator<charT> > class money_get;
locale 对象中的 Facets | 说明 |
---|---|
money_get<char> | 窄字符,用于 istream 迭代器 |
money_get<wchar_t> | 宽字符,用于 wistream 迭代器 |
成员类型 | 定义 | 描述 |
---|---|---|
char_type | 第一个模板参数(charT) | 字符类型 |
iter_type | 第二个模板参数(InputIterator) | 迭代器类型。 默认为 istreambuf_iterator<charT> |
string_type | basic_string<charT> | 与字符类型对应的字符串类型 |
特化 |
---|
money_get<char> |
money_get<wchar_t> |
template <class InputIterator> money_get<char,InputIterator> |
template <class InputIterator> money_get<wchar_t,InputIterator> |