codecvt::max_length
傳回必要的外部 Byte的最大數目產生內部 CharType。
int max_length( ) const throw( );
傳回值
必要 Byte的最大數目產生 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;
}
1
需求
標題: <地區設定>
命名空間: std