类模板
<locale>

std::time_put

template <class charT, class OutputIterator = ostreambuf_iterator<charT> >  class time_put;
用于格式化日期和时间信息的 Facet

time_put 标准 facet 用于将 tm 结构中包含的日期和时间信息格式化为字符序列。

time_put 类模板有一个受保护的析构函数:程序只能构造派生类的对象,或使用安装在 locale 对象中的对象(通过 use_facet)。

所有标准的 locale 对象至少支持 time_put 类模板的以下 facet 实例化(作为 time 类别的一部分)
locale 对象中的 Facet说明
time_put<char>窄字符,用于与 ostream 迭代器一起使用
time_put<wchar_t>宽字符,用于与 wostream 迭代器一起使用

模板参数

charT
字符类型:要写入的字符序列的字符类型。
别名为成员 char_type
OutputIterator
输出迭代器类型,指向要写入的字符序列中的元素。
默认为 ostreambuf_iterator,它是一种可以从 basic_ostream 对象隐式转换的迭代器。
别名为成员 iter_type

成员类型

成员类型定义描述
char_type第一个模板参数(charT字符类型
iter_type第二个模板参数(OutputIterator迭代器类型。
默认为 ostreambuf_iterator<charT>

成员常量

该类包含一个公共静态常量,类型为 locale::id,该常量唯一标识具有 time_put 语义的 facet。

公开成员函数


虚保护成员函数


特化

所有库实现至少提供以下模板的特化和偏特化
特化
time_put<char>
time_put<wchar_t>
template <class OutputIterator> time_put<char,OutputIterator>
template <class OutputIterator> time_put<wchar_t,OutputIterator>

其中 OutputIterator 应为满足 *输出迭代器* 要求,并且能够遍历指定字符类型的元素。