Share via


char_traits::to_char_type

Convierte un carácter de int_type el carácter correspondiente de char_type y devuelve el resultado.

static char_type to_char_type(
   const int_type& _Ch
);

Parámetros

  • _Ch
    el carácter de int_type que se representará como char_type.

Valor devuelto

El carácter de char_type correspondiente al carácter de int_type .

un valor de _Ch que no se puede representar como tal produce un resultado sin especificar.

Comentarios

Las operaciones to_int_type y to_char_type de conversión son inversas entre sí, de modo que:

== x deto_int_type ( to_char_type (x))

para cualquier int_type x y

== x deto_char_type ( to_int_type (x))

para cualquier char_type x.

Ejemplo

// char_traits_to_char_type.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;

   char_traits<char>::char_type ch1 =  'a';
   char_traits<char>::char_type ch2 =  'b';
   char_traits<char>::char_type ch3 =  'a';

   // Converting from char_type to int_type
   char_traits<char>::int_type int1, int2 , int3;
   int1 =char_traits<char>:: to_int_type ( ch1 );
   int2 =char_traits<char>:: to_int_type ( ch2 );
   int3 =char_traits<char>:: to_int_type ( ch3 );

   cout << "The char_types and corresponding int_types are:"
        << "\n    ch1 = " << ch1 << " corresponding to int1 = " 
        << int1 << "."
        << "\n    ch2 = " << ch2 << " corresponding to int1 = " 
        << int2 << "."
        << "\n    ch3 = " << ch3 << " corresponding to int1 = " 
        << int3 << "." << endl << endl;
   
   // Converting from int_type back to char_type
   char_traits<char>::char_type rec_ch1;
   rec_ch1 = char_traits<char>:: to_char_type ( int1);
   char_traits<char>::char_type rec_ch2;
   rec_ch2 = char_traits<char>:: to_char_type ( int2);

   cout << "The recovered char_types and corresponding int_types are:"
        << "\n    recovered ch1 = " << rec_ch1 << " from int1 = " 
        << int1 << "."
        << "\n    recovered ch2 = " << rec_ch2 << " from int2 = " 
        << int2 << "." << endl << endl;
   
   // Testing that the conversions are inverse operations
   bool b1 = char_traits<char>::eq ( rec_ch1 , ch1 );
   if ( b1 )
      cout << "The recovered char_type of ch1"
           << " is equal to the original ch1." << endl;
   else
      cout << "The recovered char_type of ch1"
           << " is not equal to the original ch1." << endl;

   // An equivalent and alternatively test procedure
   if ( rec_ch2 == ch2 )
      cout << "The recovered char_type of ch2"
           << " is equal to the original ch2." << endl;
   else
      cout << "The recovered char_type of ch2"
           << " is not equal to the original ch2." << endl;
}
  
  
  
  
  
  
  

Requisitos

encabezado: <cadena>

espacio de nombres: std

Vea también

Referencia

char_traits Struct