operator<= (<list>)

演算子の左辺の list オブジェクトが右辺の list オブジェクト以下かどうかを調べます。

bool operator<=(    const list<Type, Allocator>& _Left,    const list<Type, Allocator>& _Right );

パラメーター

  • _Left
    list 型のオブジェクト。

  • _Right
    list 型のオブジェクト。

戻り値

演算子の左辺の list が演算子の右辺の list 以下である場合は true、それ以外の場合は false

解説

list オブジェクト間の比較は、要素のペアの比較に基づいています。 2 つのオブジェクト間の "以下" 関係は、最初の等しくない要素のペアの比較に基づいています。

使用例

// list_op_le.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main( ) 
{
   using namespace std; 
   list <int> c1, c2;
   c1.push_back( 1 );
   c1.push_back( 2 );
   c1.push_back( 4 );

   c2.push_back( 1 );
   c2.push_back( 3 );

   if ( c1 <= c2 )
      cout << "List c1 is less than or equal to list c2." << endl;
   else
      cout << "List c1 is greater than list c2." << endl;
}
  

必要条件

ヘッダー: <list>

名前空間: std

参照

関連項目

list クラス

標準テンプレート ライブラリ