map::find
傳回處理一個項目的 Iterator 的位置是索引鍵等於指定的索引鍵對應的。
iterator find(
const Key& _Key
);
const_iterator find(
const Key& _Key
) const;
參數
- _Key
項目的排序鍵會與中的索引鍵值從所要搜尋之對應的。
傳回值
處理一個項目的位置與指定之索引鍵的 Iterator 成功或最後一個項目的位置對應中,如果符合沒有索引鍵中找到。
備註
成員函式來傳回處理對應中的項目排序鍵與引數的索引鍵就等於在一個二進位述詞下比可比性關聯會根據的排程較少的 Iterator。
如果 find 的傳回值指派給 const_iterator,無法修改對應物件。 如果 find 的傳回值指派給 iterator,可以修改對應物件
範例
// map_find.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
int main( )
{
using namespace std;
map <int, int> m1;
map <int, int> :: const_iterator m1_AcIter, m1_RcIter;
typedef pair <int, int> Int_Pair;
m1.insert ( Int_Pair ( 1, 10 ) );
m1.insert ( Int_Pair ( 2, 20 ) );
m1.insert ( Int_Pair ( 3, 30 ) );
m1_RcIter = m1.find( 2 );
cout << "The element of map m1 with a key of 2 is: "
<< m1_RcIter -> second << "." << endl;
// If no match is found for the key, end( ) is returned
m1_RcIter = m1.find( 4 );
if ( m1_RcIter == m1.end( ) )
cout << "The map m1 doesn't have an element "
<< "with a key of 4." << endl;
else
cout << "The element of map m1 with a key of 4 is: "
<< m1_RcIter -> second << "." << endl;
// The element at a specific location in the map can be found
// using a dereferenced iterator addressing the location
m1_AcIter = m1.end( );
m1_AcIter--;
m1_RcIter = m1.find( m1_AcIter -> first );
cout << "The element of m1 with a key matching "
<< "that of the last element is: "
<< m1_RcIter -> second << "." << endl;
}
需求
標題: <map>
命名空間: std