template <class charT, class OutputIterator = ostreambuf_iterator<charT> > class num_put;
| Facet 在 locale 对象中 | 说明 |
|---|---|
num_put<char> | 窄字符(ostream 使用) |
num_put<wchar_t> | 宽字符(wostream 使用) |
| 成员类型 | 定义 | 描述 |
|---|---|---|
| char_type | 第一个模板参数(charT) | 字符类型 |
| iter_type | 第二个模板参数(OutputIterator) | 迭代器类型。 默认为 ostreambuf_iterator<charT> |
| 特化 |
|---|
num_put<char> |
num_put<wchar_t> |
template <class OutputIterator> num_put<char,OutputIterator> |
template <class OutputIterator> num_put<wchar_t,OutputIterator> |