命名空间
变体
操作

std::time_get<CharT,InputIt>::~time_get

来自 cppreference.com
< cpp‎ | locale‎ | time get
 
 
 
 
在头文件中定义 <locale>
protected: ~time_get();

析构一个 std::time_get 面。此析构函数是受保护的和虚函数(由于 基类 析构函数是虚函数)。std::time_get 类型的对象,像大多数面一样,只能在实现此面的最后一个 std::locale 对象超出范围时销毁,或者如果从 std::time_get 派生了一个用户定义的类并实现了公有析构函数。

[编辑] 示例

#include <iostream>
#include <locale>
 
struct Destructible_time_get : public std::time_get<wchar_t>
{
    Destructible_time_get(std::size_t refs = 0) : time_get(refs) {}
    // note: the implicit destructor is public
};
 
int main()
{
    Destructible_time_get dc;
    // std::time_get<wchar_t> c; // compile error: protected destructor
}