다음을 통해 공유


operator>= (map)

 

게시: 2016년 4월

오른쪽에는 맵 개체 보다 크거나 같음 연산자의 왼쪽에 있는 지도 개체 인지 테스트 합니다.

구문

bool operator>=(
   const map <Key, Type, Traits, Allocator>& 
_Left
,
   const map <Key, Type, Traits, Allocator>& 
_Right
);

매개 변수

  • _Left
    형식의 개체 합니다.

  • _Right
    형식의 개체 합니다.

반환 값

true 연산자의 좌 변에 맵이 보다 큰 목록 오른쪽에는 지도에; 그렇지 않으면 있으면 false합니다.

설명

지도 개체 간의 비교는 해당 요소의 쌍 비교를 기반으로 합니다. 두 개체 간의 크거나 같음 관계는 같지 않은 첫 번째 요소 쌍의 비교를 기반으로 합니다.

예제

// map_op_ge.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main( )
{
   using namespace std;
   map < int, int > m1, m2, m3, m4;
   int i;
   typedef pair < int, int > Int_Pair;

   for ( i = 1 ; i < 3 ; i++ )
   {
      m1.insert ( Int_Pair ( i, i ) );
      m2.insert ( Int_Pair ( i, i * i ) );
      m3.insert ( Int_Pair ( i, i - 1 ) );
      m4.insert ( Int_Pair ( i, i ) );
   }

   if ( m1 >= m2 )
      cout << "Map m1 is greater than or equal to map m2." << endl;
   else
      cout << "The map m1 is less than the map m2." << endl;

   if ( m1 >= m3 )
      cout << "Map m1 is greater than or equal to map m3." << endl;
   else
      cout << "The map m1 is less than the map m3." << endl;

   if ( m1 >= m4 )
      cout << "Map m1 is greater than or equal to map m4." << endl;
   else
      cout << "The map m1 is less than the map m4." << endl;
}
지도 m 1을 사용 하면 맵 m2 보다 작습니다. 맵 m 1 보다 크거나 같은 m3 매핑할입니다. 맵 m 1 보다 크거나 같은 m4 매핑할입니다.

요구 사항

헤더: <map>

네임스페이스: std

참고 항목

표준 템플릿 라이브러리