Espaces de noms
Variantes
Actions

std::codecvt::~codecvt

De cppreference.com
< cpp‎ | locale‎ | codecvt

 
 
Bibliothèque localisations
Locales et facettes
Original:
Locales and facets
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
locale
Classification des caractères
Original:
Character classification
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Conversions
Original:
Conversions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Classes de facettes catégorie de base
Original:
Facet category base classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Catégories de facettes
Original:
Facet categories
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Spécifique aux paramètres régionaux facettes
Original:
Locale-specific facets
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Facettes de conversion de code
Original:
Code conversion facets
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
C locale
Original:
C locale
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
 
Déclaré dans l'en-tête <locale>
protected: ~codecvt();
Détruit une facette std::codecvt. Ce destructeur est protégée et virtuelle (en raison de destructeur classe de base être virtuel). Un objet de std::codecvt type, comme la plupart des aspects, ne peut être détruit lorsque l'objet std::locale dernière qui implémente cette facette est hors de portée ou si une classe définie par l'utilisateur est dérivé de std::codecvt et met en œuvre un destructeur public .
Original:
Destructs a std::codecvt facet. This destructor is protected and virtual (due to classe de base destructor being virtual). An object of type std::codecvt, like most facets, can only be destroyed when the last std::locale object that implements this facet goes out of scope or if a user-defined class is derived from std::codecvt and implements a public destructor.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier]Exemple

#include <iostream>#include <locale>struct Destructible_codecvt :publicstd::codecvt<wchar_t>{ Destructible_codecvt(std::size_t refs =0): codecvt(refs){} ~Destructible_codecvt(){};// public dtor};int main(){ Destructible_codecvt dc;// std::codecvt<wchar_t> c; // compile error: protected destructor}


close