codecvt::always_noconv
Sprawdza, czy żadne konwersje muszą być wykonane.
bool always_noconv( ) const throw( );
Wartość zwracana
Wartość logiczna, która jest true Jeśli żadne konwersje muszą być zrobione; false jest co najmniej jeden musi być wykonane.
Uwagi
Zwraca element członkowski funkcja do_always_noconv.
Przykład
// 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;
}
Wymagania
Nagłówek:<ustawień regionalnych>
Przestrzeń nazw: std