命名空间
变体
操作

std::time_put_byname

来自 cppreference.com
< cpp‎ | locale
定义在头文件 <locale>
template<

    class CharT,
    class OutputIt = std::ostreambuf_iterator<CharT>

> class time_put_byname : public std::time_put<CharT, OutputIt>;

std::time_put_byname 是一个 std::time_put 方面,它封装了在其构造时指定的区域设置的时间和日期格式规则。

内容

[编辑] 特化

标准库保证提供满足以下类型要求的每个特化

  • CharTcharwchar_t 中的一个,并且
  • OutputIt 必须满足 LegacyOutputIterator 的要求。

[编辑] 成员类型

成员类型 定义
char_type CharT
iter_type OutputIt

[编辑] 成员函数

(构造函数)
构造一个新的 time_put_byname 方面
(公共成员函数) [编辑]
(析构函数)
销毁一个 time_put_byname 方面
(受保护的成员函数) [编辑]

std::time_put_byname::time_put_byname

explicit time_put_byname( const char* name, std::size_t refs = 0 );
explicit time_put_byname( const std::string& name, std::size_t refs = 0 );
(自 C++11 起)

为具有 name 的区域设置构造一个新的 std::time_put_byname 方面。

refs 用于资源管理:如果 refs == 0,则当持有该方面的最后一个 std::locale 对象被销毁时,实现将销毁该方面。否则,该对象不会被销毁。

参数

name - 区域设置的名称
refs - 链接到该方面的引用数量

std::time_put_byname::~time_put_byname

protected:
~time_put_byname();

销毁该方面。

std::time_put 继承

成员对象

成员名称 类型
id (静态) std::locale::id

成员函数

调用 do_put
(std::time_put<CharT,OutputIt> 的公共成员函数) [编辑]

受保护的成员函数

[虚拟]
格式化日期/时间并写入输出流
(std::time_put<CharT,OutputIt> 的虚拟受保护的成员函数) [编辑]

[编辑] 示例

使用 "C" 区域设置打印当前时间,并将 time_put 方面替换为各种 std::time_put_byname 方面。显示的结果是使用 clang 编译器获得的。

#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(out.getloc(),
                          new std::time_put_byname<wchar_t>("ja_JP.utf8")));
    out << std::put_time(std::localtime(&t), L"%A %c") << '\n';
 
    out.imbue(std::locale(out.getloc(),
                          new std::time_put_byname<wchar_t>("ru_RU.utf8")));
    out << std::put_time(std::localtime(&t), L"%A %c") << '\n';
 
    out.imbue(std::locale(out.getloc(),
                          new std::time_put_byname<wchar_t>("sv_SE.utf8")));
    out << std::put_time(std::localtime(&t), L"%A %c") << '\n';
}

可能的输出

木曜日 2023年10月05日 19時44分51秒
Четверг Чт 05 окт 2023 19:44:51
torsdag tor  5 okt 2023 19:44:51

[编辑] 另请参见

格式化 std::tm 的内容以作为字符序列输出
(类模板) [编辑]