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