命名空间
变体
操作

std::money_put<CharT,OutputIt>::~money_put

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

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

[编辑] 示例

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