다음을 통해 공유


codecvt::max_length

외부의 최대 수를 반환 합니다. 바이트s 내부에서 생성 하는 데 필요한 CharType.

int max_length( ) const throw( );

반환 값

최대 바이트하나를 만드는 데 필요한 s CharType.

설명

멤버 함수를 반환 합니다. do_max_length.

예제

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

요구 사항

헤더: <locale>

네임 스페이스: std

참고 항목

참조

codecvt Class