次の方法で共有


<list> 演算子

operator!=

演算子の左辺の list オブジェクトが右辺の list オブジェクトと等しくないかどうかを調べます。

bool operator!=(
    const list<Type, Allocator>& left,
    const list<Type, Allocator>& right);

パラメーター

left
list 型オブジェクト。

right
list 型オブジェクト。

戻り値

リストが等しくない場合は true、リストが等しい場合は false

解説

list オブジェクト間の比較は、要素のペアの比較に基づいています。 2 つの list は、同じ数の要素を持ち、各要素の値が同じである場合に等しくなります。 それ以外の場合は等しくありません。

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

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

if ( c1 != c2 )
cout << "Lists not equal." << endl;
else
cout << "Lists equal." << endl;
}
/* Output:
Lists not equal.
*/

operator<

演算子の左辺の list オブジェクトが右辺の list オブジェクトより小さいかどうかを調べます。

bool operator<(
    const list<Type, Allocator>& left,
    const list<Type, Allocator>& right);

パラメーター

left
list 型オブジェクト。

right
list 型オブジェクト。

戻り値

演算子の左辺のリストが演算子の右辺のリストより小さい場合は true、それ以外の場合は false

解説

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

// list_op_lt.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 list c2." << endl;
   else
      cout << "List c1 is not less than list c2." << endl;
}
/* Output:
List c1 is less than list c2.
*/

operator<=

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

bool operator<=(
    const list<Type, Allocator>& left,
    const list<Type, Allocator>& right);

パラメーター

left
list 型オブジェクト。

right
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;
}
/* Output:
List c1 is less than or equal to list c2.
*/

operator==

演算子の左辺の 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 は、同じ数の要素を持ち、各要素の値が同じである場合に等しくなります。 それ以外の場合は等しくありません。

// list_op_eq.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
   using namespace std;

   list <int> c1, c2;
   c1.push_back( 1 );
   c2.push_back( 1 );

   if ( c1 == c2 )
      cout << "The lists are equal." << endl;
   else
      cout << "The lists are not equal." << endl;
}
/* Output:
The lists are equal.
*/

operator>

演算子の左辺の list オブジェクトが右辺の list オブジェクトより大きいかどうかを調べます。

bool operator>(
    const list<Type, Allocator>& left,
    const list<Type, Allocator>& right);

パラメーター

left
list 型オブジェクト。

right
list 型オブジェクト。

戻り値

演算子の左辺のリストが演算子の右辺のリストより大きい場合は true、それ以外の場合は false

解説

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

// list_op_gt.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
   using namespace std;
   list <int> c1, c2;
   c1.push_back( 1 );
   c1.push_back( 3 );
   c1.push_back( 1 );

   c2.push_back( 1 );
   c2.push_back( 2 );
   c2.push_back( 2 );

   if ( c1 > c2 )
      cout << "List c1 is greater than list c2." << endl;
   else
      cout << "List c1 is not greater than list c2." << endl;
}
/* Output:
List c1 is greater than list c2.
*/

operator>=

演算子の左辺の 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_ge.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

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

   c2.push_back( 1 );
   c2.push_back( 2 );
   c2.push_back( 2 );

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