次の方法で共有


char_traits::lt

1 文字が他方の値より小さいかどうかをテストします。

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

パラメーター

  • _Ch1
    より小さいをテストする 2 文字の狭いより。

  • _Ch2
    以下のようにテストされる 2 文字の 2 回目。

戻り値

最初の文字がある場合、2 番目の文字未満true ; それ false

使用例

// char_traits_lt.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 =  'z';

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

   // An equivalent and alternatively test procedure
   if ( ch3 <  ch2 )
      cout << "The character ch3 is less than "
           << "the character ch2." << endl;
   else
      cout << "The character ch3 is not less "
           << "than the character ch2." << endl;
}
  
  

必要条件

ヘッダー: <string>

名前空間: std

参照

関連項目

char_traits Struct