std::num_put<CharT,OutputIt>::~num_put
来自 cppreference.com
在头文件 <locale> 中定义 |
||
protected: ~num_put(); |
||
销毁一个 std::num_put 构面。这个析构函数是受保护的并且是虚拟的(由于 基类 析构函数是虚拟的)。std::num_put 类型的对象,像大多数构面一样,只能在实现此构面的最后一个 std::locale 对象超出范围时销毁,或者如果用户定义的类是从 std::num_put 派生的并且实现了公共析构函数。
[编辑] 示例
运行这段代码
#include <iostream> #include <locale> struct Destructible_num_put : public std::num_put<wchar_t> { Destructible_num_put(std::size_t refs = 0) : num_put(refs) {} // note: the implicit destructor is public }; int main() { Destructible_num_put dc; // std::num_put<wchar_t> c; // compile error: protected destructor }