다음을 통해 공유


multiset::find

요소의 첫 번째 위치에 지정 된 키에 해당 하는 키가 multiset 주소 지정 하는 반복기를 반환 합니다.

iterator find(
   const Key& _Key
);
const_iterator find(
   const Key& _Key
) const;

매개 변수

  • _Key
    검색 중인 복수 집합에서 요소의 정렬 키가 일치 하는 키입니다.

반환 값

반복기 또는 const_iterator 지정한 키나 키에 일치 하는 항목이 있는 경우 마지막 요소가 multiset에 이후 위치를 첫 번째 요소의 위치 주소입니다.

설명

멤버 함수 이내 비교가 관계 기반 첫 순서는 이진 조건부 인수 키를 정렬 키 같습니다 복수 집합에 요소를 해결 하는 반복기를 반환 합니다.

경우 반환 값의 찾기 할당 되는 const_iterator, multiset 개체를 수정할 수 없습니다.경우 반환 값의 찾기 할당 되는 반복기, multiset 개체를 수정할 수 있습니다.

예제

// multiset_find.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;   
   multiset <int> ms1;
   multiset <int> :: const_iterator ms1_AcIter, ms1_RcIter;
   
   ms1.insert( 10 );
   ms1.insert( 20 );
   ms1.insert( 20 );

   ms1_RcIter = ms1.find( 20 );
   cout << "The first element of multiset ms1 with a key of 20 is: "
        << *ms1_RcIter << "." << endl;

   ms1_RcIter = ms1.find( 40 );

   // If no match is found for the key, end( ) is returned
   if ( ms1_RcIter == ms1.end( ) )
      cout << "The multiset ms1 doesn't have an element "
              << "with a key of 40." << endl;
   else
      cout << "The element of multiset ms1 with a key of 40 is: "
           << *ms1_RcIter << "." << endl;

   // The element at a specific location in the multiset can be
   // found using a dereferenced iterator addressing the location
   ms1_AcIter = ms1.end( );
   ms1_AcIter--;
   ms1_RcIter = ms1.find( *ms1_AcIter );
   cout << "The first element of ms1 with a key matching" << endl
        << "that of the last element is: "
        << *ms1_RcIter << "." << endl;

   // Note that the first element with a key equal to
   // the key of the last element is not the last element
   if ( ms1_RcIter == --ms1.end( ) )
      cout << "This is the last element of multiset ms1."
           << endl;
   else
      cout << "This is not the last element of multiset ms1."
           << endl;
}
  
  
  
  

요구 사항

헤더: <set>

네임 스페이스: std

참고 항목

참조

multiset Class

표준 템플릿 라이브러리