命名空间
变体
操作

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

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

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

[编辑] 示例

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