Condividi tramite


codecvt::max_length

Restituisce il numero massimo Byteesterno s necessario per produrre un charinterno.

int max_length( ) const throw( );

Valore restituito

Numero massimo Bytes necessario per produrre un char.

Note

La funzione membro restituisce do_max_length.

Esempio

// codecvt_max_length.cpp
// compile with: /EHsc
#define _INTL
#include <locale>
#include <iostream>
using namespace std;

int main( )   
{
   locale loc( "C");//English_Britain" );//German_Germany
   int res = use_facet<codecvt<char, char, mbstate_t> >
     ( loc ).max_length( );
   wcout << res << endl;
}
  

Requisiti

intestazione: <locale>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

codecvt Class