Compartir a través de


char_traits::eq

Comprueba si dos caracteres de char_type son iguales.

static bool eq( 
   const char_type& _Ch1,  
   const char_type& _Ch2  
);

Parámetros

  • _Ch1
    El primer de dos caracteres que se van a comprobar para comprobar la igualdad.

  • _Ch2
    El segundo de dos caracteres que se van a comprobar para comprobar la igualdad.

Valor devuelto

true si el primer carácter es igual al segundo carácter; si no false.

Ejemplo

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

int main( ) 
{
   using namespace std;

   char_traits<char>::char_type ch1 =  'x';
   char_traits<char>::char_type ch2 =  'y';
   char_traits<char>::char_type ch3 =  'x';

   // Testing for equality
   bool b1 = char_traits<char>::eq ( ch1 , ch2 );
   if ( b1 )
      cout << "The character ch1 is equal "
           << "to the character ch2." << endl;
   else
      cout << "The character ch1 is not equal "
           << "to the character ch2." << endl;

   // An equivalent and alternatively test procedure
   if ( ch1 == ch3 )
      cout << "The character ch1 is equal "
           << "to the character ch3." << endl;
   else
      cout << "The character ch1 is not equal "
           << "to the character ch3." << endl;
}
  

Requisitos

Encabezado: <string>

Espacio de nombres: std

Vea también

Referencia

char_traits (Struct)