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