time_put_byname 类

派生的模板类描述可以充当 time_put< 类型 CharType,OutputIterator >区域设置方面的对象。

template<class CharType,
 class OutIt = ostreambuf_iterator<CharType, char_traits<CharType> > >
 class time_put_byname : public time_put<CharType, OutputIterator>
{
public:
    explicit time_put_byname(
        const char *_Locname,
        size_t _Refs = 0
    );
    explicit time_put_byname(
        const string& _Locname,
        size_t _Refs = 0
    );
protected:
    virtual ~time_put_byname();
};

参数

  • _Locname
    区域设置名称匹配。

  • _Refs
    初始引用计数。

备注

命名的 区域设置行为取决于它的 _Locname。 各个构造函数初始化其与 time_put<CharType,OutputIterator>(_Refs) 的基对象。

要求

页眉: <区域设置>

命名空间: std

请参见

参考

C++ 标准库中的线程安全