Sdílet prostřednictvím


codecvt::max_length

Vrátí maximální počet externích bajtpotřebné k jeden interní s CharType.

int max_length( ) const throw( );

Vrácená hodnota

Maximální počet bajtpotřebné k jedné s CharType.

Poznámky

Členské funkce vrátí do_max_length.

Příklad

// 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;
}
  

Požadavky

Záhlaví: <locale>

Obor názvů: std

Viz také

Referenční dokumentace

codecvt Class