命名空间
变体
操作

std::moneypunct<CharT,International>::~moneypunct

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

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

[编辑] 示例

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