codecvt::always_noconv
測試轉換不需要完成。
bool always_noconv( ) const throw( );
傳回值
是 true 的布林值,如果轉換不需要完成; false 是至少一個需要做。
備註
成員函式會傳回 do_always_noconv。
範例
// codecvt_always_noconv.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
using namespace std;
int main( )
{
locale loc ( "German_Germany" );
bool result1 = use_facet<codecvt<char, char, mbstate_t> >
( loc ).always_noconv( );
if ( result1 )
cout << "No conversion is needed." << endl;
else
cout << "At least one conversion is required." << endl;
bool result2 = use_facet<codecvt<wchar_t, char, mbstate_t> >
( loc ).always_noconv( );
if ( result2 )
cout << "No conversion is needed." << endl;
else
cout << "At least one conversion is required." << endl;
}
需求
標題: <地區設定>
命名空間: std