Namespaces
Variants

std::ctype<CharT>:: ~ctype

From cppreference.net
定义于头文件 <locale>
protected : ~ctype ( ) ;

析构一个 std:: ctype facet。此析构函数为受保护且虚函数(因 基类 析构函数为虚函数)。类型为 std:: ctype 的对象与大多数facet一样,仅当最后一个实现此facet的 std::locale 对象离开作用域时,或用户自定义类继承自 std:: ctype 并实现了公共析构函数时才能被销毁。

示例

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