다음을 통해 공유


char_traits::eq

두 여부를 테스트 char_type 문자는 동일 합니다.

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

매개 변수

  • _Ch1
    첫 두 문자 같은지 여부를 테스트 합니다.

  • _Ch2
    같은지 테스트할 두 번째 두 문자입니다.

반환 값

true 이면 이면 첫 번째 문자를 두 번째 문자입니다. 그렇지 않으면 거짓.

예제

// 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;
}
  
  

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

char_traits Struct