C++ Locale 库 - num_put
描述
它是格式化数值的一个方面,而 num_put 标准方面将数值格式化为字符序列。 它的成员 put 由标准输出流(例如 ostream)调用,以格式化使用插入运算符 (operator<<) 插入的数值。
声明
以下是 std::num_put 的声明。
C++98
template <class charT, class OutputIterator = ostreambuf_iterator<charT> > class num_put;
C++11
template <class charT, class OutputIterator = ostreambuf_iterator<charT> > class num_put;
参数
charT − 它是一种字符类型。
OutputIterator − 它是一个输出迭代器类型。
返回值
none
成员类型
序号 | 成员类型 & 说明 |
---|---|
1 | char_type 这是一个字符类型 facet。 |
2 | iter_type 它是第二个模板参数。 |