C++ 本地化库 - time_put



描述

这是一个标准的 facet,用于将 tm 结构中包含的日期和时间信息格式化为一系列字符。

声明

以下是 std::time_put 的声明。

C++98

	
template <class charT, class OutputIterator = ostreambuf_iterator<charT> >
   class time_put;

C++11

template <class charT, class OutputIterator = ostreambuf_iterator<charT> >
   class time_put;

参数

  • charT − 字符类型。

  • OutputIterator − 输出迭代器类型。

返回值

locale.htm
广告