C++ 语言环境库 - 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 - 它是输出迭代器类型。

返回值

没有任何

会员类型

先生。 会员类型及描述
1

字符类型

它是一个字符类型方面。

2

迭代类型

它是第二个模板参数。

语言环境.htm