| Localization library | |||||||||||||||||||||||||
| Regular expressions library(C++11) | |||||||||||||||||||||||||
| Formatting library(C++20) | |||||||||||||||||||||||||
| Null-terminated sequence utilities | |||||||||||||||||||||||||
| Byte strings | |||||||||||||||||||||||||
| Multibyte strings | |||||||||||||||||||||||||
| Wide strings | |||||||||||||||||||||||||
| Primitive numeric conversions | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
| Text encoding identifications | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <locale> | ||
template< class CharT, | ||
Class templatestd::time_put encapsulates date and time formatting rules. The I/O manipulatorstd::put_time uses thestd::time_put facet of the I/O stream's locale to generate text representation of anstd::tm object.
Inheritance diagram
If astd::time_put specialization is not guaranteed to be provided by the standard library (see below), the behaviors of itsput() anddo_put() are not guaranteed as specified.
Contents |
The standard library is guaranteed to provide the following specializations (they arerequired to be implemented by any locale object):
Defined in header <locale> | |
| std::time_put<char> | creates narrow string representations of date and time |
| std::time_put<wchar_t> | creates wide string representations of date and time |
In addition, the standard library is also guaranteed to provide every specialization that satisfies the following type requirements:
CharT is one ofchar andwchar_t, andOutputIt must meet the requirements ofLegacyOutputIterator.| Type | Definition |
char_type | CharT |
iter_type | OutputIt |
| Member | Description |
std::locale::idid[static] | the identifier of thefacet |
constructs a newtime_put facet(public member function)[edit] | |
destructs atime_put facet(protected member function)[edit] | |
invokesdo_put(public member function)[edit] |
[virtual] | formats date/time and writes to output stream (virtual protected member function)[edit] |
#include <codecvt>#include <ctime>#include <iomanip>#include <iostream> int main(){std::time_t t=std::time(nullptr);std::wbuffer_convert<std::codecvt_utf8<wchar_t>> conv(std::cout.rdbuf());std::wostream out(&conv); out.imbue(std::locale("ja_JP.utf8")); // this I/O manipulator std::put_time uses std::time_put<wchar_t> out<<std::put_time(std::localtime(&t), L"%A %c")<<'\n';}
Output:
水曜日 2011年11月09日 12時32分05秒
| represents the system-suppliedstd::time_put for the named locale (class template)[edit] | |
| parses time/date values from an input character sequence intostd::tm (class template)[edit] | |
(C++11) | formats and outputs a date/time value according to the specified format (function template)[edit] |