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

来自cppreference.com
< cpp‎ | locale‎ | moneypunct

 
 
 
 
在标头 <locale> 定义
protected: ~moneypunct();

析构 std::moneypunct 刻面。此析构函数为受保护且为虚函数(由于基类析构函数为虚函数)。std::moneypunct 类型的对象,同大多数刻面一样,只能在最后一个实装此刻面或用户定义的派生自 std::moneypunct 并实现公开析构函数的刻面的 std::locale 离开作用域时,才会被销毁。

示例

#include <iostream>
#include <locale>
 
struct Destructible_moneypunct : public std::moneypunct<wchar_t>
{
    Destructible_moneypunct(std::size_t refs = 0) : moneypunct(refs) {}
    // 注意:隐式析构函数为公开
};
 
int main()
{
    Destructible_moneypunct dc;
    // std::moneypunct<wchar_t> c; // 编译错误:受保护析构函数
}