Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::moneypunct<CharT,International>::~moneypunct

      From cppreference.com
      <cpp‎ |locale‎ |moneypunct
       
       
       
      Localization library
       
       
      Defined in header<locale>
      protected: ~moneypunct();

      Destructs astd::moneypunct facet. This destructor is protected and virtual (due tobase class destructor being virtual). An object of typestd::moneypunct, like most facets, can only be destroyed when the laststd::locale object that implements this facet goes out of scope or if a user-defined class is derived fromstd::moneypunct and implements a public destructor.

      [edit]Example

      Run this code
      #include <iostream>#include <locale> struct Destructible_moneypunct:publicstd::moneypunct<wchar_t>{    Destructible_moneypunct(std::size_t refs=0): moneypunct(refs){}// note: the implicit destructor is public}; int main(){    Destructible_moneypunct dc;// std::moneypunct<wchar_t> c; // compile error: protected destructor}
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/locale/moneypunct/%7Emoneypunct&oldid=160156"

      [8]ページ先頭

      ©2009-2026 Movatter.jp