std::ctype<CharT>::~ctype
来自 cppreference.com
定义在头文件 <locale> 中 |
||
protected: ~ctype(); |
||
销毁一个 std::ctype 分面。此析构函数是受保护的并且是虚拟的(因为 基类 析构函数是虚拟的)。std::ctype 类型的对象,就像大多数分面一样,只能在实现此分面的最后一个 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) {} // note: the implicit destructor is public }; int main() { Destructible_ctype dc; // std::ctype<wchar_t> c; // compile error: protected destructor }