命名空间
变体
操作

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

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

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

[编辑] 示例

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