次の方法で共有


<deque> 演算子

operator!=

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

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

パラメーター

left
deque 型オブジェクト。

right
deque 型オブジェクト。

戻り値

deque オブジェクトが等しくない場合は true、deque オブジェクトが等しい場合は false

解説

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

// deque_op_ne.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( )
{
   using namespace std;
   deque <int> c1, c2;

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

   if ( c1 != c2 )
      cout << "The deques are not equal." << endl;
   else
      cout << "The deques are equal." << endl;
}
The deques are not equal.

operator<

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

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

パラメーター

left
deque 型オブジェクト。

right
deque 型オブジェクト。

戻り値

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

解説

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

// deque_op_lt.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( )
{
   using namespace std;
   deque <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 << "Deque c1 is less than deque c2." << endl;
   else
      cout << "Deque c1 is not less than deque c2." << endl;
}
Deque c1 is less than deque c2.

operator<=

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

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

パラメーター

left
deque 型オブジェクト。

right
deque 型オブジェクト。

戻り値

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

解説

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

// deque_op_le.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( )
{
   using namespace std;
   deque <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 << "Deque c1 is less than or equal to deque c2." << endl;
   else
      cout << "Deque c1 is greater than deque c2." << endl;
}
Deque c1 is less than or equal to deque c2.

operator==

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

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

パラメーター

left
deque 型オブジェクト。

right
deque 型オブジェクト。

戻り値

演算子の左辺の deque が演算子の右辺の deque と等しい場合は true、それ以外の場合は false

解説

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

// deque_op_eq.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( )
{
   using namespace std;
   deque <int> c1, c2;

   c1.push_back( 1 );
   c2.push_back( 1 );

   if ( c1 == c2 )
      cout << "The deques are equal." << endl;
   else
      cout << "The deques are not equal." << endl;

   c1.push_back( 1 );
   if ( c1 == c2 )
      cout << "The deques are equal." << endl;
   else
      cout << "The deques are not equal." << endl;
}
The deques are equal.
The deques are not equal.

operator>

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

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

パラメーター

left
deque 型オブジェクト。

right
deque 型オブジェクト。

戻り値

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

解説

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

// deque_op_gt.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( )
{
   using namespace std;
   deque <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 << "Deque c1 is greater than deque c2." << endl;
   else
      cout << "Deque c1 is not greater than deque c2." << endl;
}
Deque c1 is greater than deque c2.

operator>=

演算子の左側の deque オブジェクトが右側の deque オブジェクト以上かどうかを調べます。

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

パラメーター

left
deque 型オブジェクト。

right
deque 型オブジェクト。

戻り値

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

解説

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

// deque_op_ge.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( )
{
   using namespace std;
   deque <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 << "Deque c1 is greater than or equal to deque c2." << endl;
   else
      cout << "Deque c1 is less than deque c2." << endl;
}
Deque c1 is greater than or equal to deque c2.