1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
// time_put example
// time_put::put example
#include <iostream> // std::cout
#include <string> // std::string
#include <ctime> // std::time, std::localtime, std::tm, std::time_t
#include <locale> // std::locale, std::time_put, std::use_facet
int main ()
{
std::locale loc; // classic "C" locale
// get time_put facet:
const std::time_put<char>& tmput = std::use_facet <std::time_put<char> > (loc);
std::time_t timestamp;
std::time ( ×tamp );
std::tm * now = std::localtime ( ×tamp );
// using pattern string:
std::string pattern ("Now it's: %I:%M%p\n");
tmput.put (std::cout, std::cout, ' ', now, pattern.data(), pattern.data()+pattern.length());
// using single specifier:
std::cout << "Now it's: ";
tmput.put (std::cout, std::cout, ' ', now, 'X');
std::cout << '\n';
return 0;
}
|