std::num_get<CharT,InputIt>::~num_get
From cppreference.com
| ヘッダー <locale> で定義 |
||
| protected: ~num_get(); |
||
std::num_get ファセットを破棄します。このデストラクタは保護されており、仮想です(基底クラスのデストラクタが仮想であるため)。std::num_get 型のオブジェクトは、ほとんどのファセットと同様に、このファセットを実装する最後の std::locale オブジェクトがスコープを外れるとき、またはユーザー定義クラスが std::num_get から派生し、公開デストラクタを実装している場合にのみ破棄できます。
[編集] 例
このコードを実行
#include <iostream> #include <locale> struct Destructible_num_get : public std::num_get<wchar_t> { Destructible_num_get(std::size_t refs = 0) : num_get(refs) {} // note: the implicit destructor is public }; int main() { Destructible_num_get dc; // std::num_get<wchar_t> c; // compile error: protected destructor }