hash_map::operator
[!참고]
이 API는 사용되지 않습니다.대신 unordered_map Class.
에 요소를 삽입 한 hash_map 는 지정 된 키 값입니다.
Type& operator[](
const Key& _Key
);
Type& operator[](
Key&& _Key
);
매개 변수
Parameter |
설명 |
_Key |
삽입 되는 요소의 키 값입니다. |
반환 값
삽입 된 요소의 데이터 값에 대 한 참조입니다.
설명
다음 인수 키 값이 없는 경우 해당 데이터 형식의 기본값은 함께 삽입 됩니다.
operator[] 요소를 삽입 하는 데 사용할 수 있는 hash_map m 를 사용 하 여
m[_Key] = DataValue;
값의 데이터 값은 여 mapped_type 키 값을 가진 요소의 _Key.
사용 하는 경우 operator[] 요소를 삽입 하려면 반환 되는 참조 삽입 기존 요소 변경 되거나 새로 만들지 여부 나타내지 않습니다.멤버 함수 찾기 및 삽입 사용 하 여 지정 된 키를 가진 요소가 이미 삽입 하기 전에 존재 여부를 확인할 수 있습니다.
예제
// hash_map_op_ref.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
#include <string>
int main( )
{
using namespace std;
using namespace stdext;
typedef pair <const int, int> cInt2Int;
hash_map <int, int> hm1;
hash_map <int, int> :: iterator pIter;
// Insert a data value of 10 with a key of 1
// into a hash_map using the operator[] member function
hm1[ 1 ] = 10;
// Compare other ways to insert objects into a hash_map
hm1.insert ( hash_map <int, int> :: value_type ( 2, 20 ) );
hm1.insert ( cInt2Int ( 3, 30 ) );
cout << "The keys of the mapped elements are:";
for ( pIter = hm1.begin( ) ; pIter != hm1.end( ) ; pIter++ )
cout << " " << pIter -> first;
cout << "." << endl;
cout << "The values of the mapped elements are:";
for ( pIter = hm1.begin( ) ; pIter != hm1.end( ) ; pIter++ )
cout << " " << pIter -> second;
cout << "." << endl;
// If the key already exists, operator[]
// changes the value of the datum in the element
hm1[ 2 ] = 40;
// operator[] will also insert the value of the data
// type's default constructor if the value is unspecified
hm1[5];
cout << "The keys of the mapped elements are now:";
for ( pIter = hm1.begin( ) ; pIter != hm1.end( ) ; pIter++ )
cout << " " << pIter -> first;
cout << "." << endl;
cout << "The values of the mapped elements are now:";
for ( pIter = hm1.begin( ) ; pIter != hm1.end( ) ; pIter++ )
cout << " " << pIter -> second;
cout << "." << endl;
// opperator[] will also insert by moving a key
hash_map <string, int> hm2;
string str("a");
hm2[move(str)] = 1;
cout << "The moved key is " << hm2.begin()->first
<< ", with value " << hm2.begin()->second << endl;
}
Output
The keys of the mapped elements are: 1 2 3.
The values of the mapped elements are: 10 20 30.
The keys of the mapped elements are now: 1 2 3 5.
The values of the mapped elements are now: 10 40 30 0.
The moved key is a, with value 1.
요구 사항
헤더: <hash_map>
네임 스페이스: stdext