次の方法で共有


char_traits::eq

char_type の 2 文字が等しいかどうかをテストします。

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

パラメーター

  • _Ch1
    等価性をテストする 2 文字の狭い。

  • _Ch2
    等価性をテストする 2 文字の 2 番目の。

戻り値

最初の文字が 2 番目の文字と等しいtrue ; それ false

使用例

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