Поделиться через


map::operator[]

Вставляет элемент в сопоставление с указанным значением ключа.

Type& operator[]( 
   const Key& _Key 
); 
Type& operator0-( 
    Key&& _Key 
);

Параметры

Параметр

Описание

_Key

Значение ключа элемента, который должен вставляться.

Возвращаемое значение

Ссылка на значение элемента, представленного данным.

Заметки

Если значение ключа аргумента не найдено, оно вставляется вместе с значением по умолчанию типа данных.

operator[] может использоваться, чтобы вставлять элементы в сопоставление m с помощью m[_Key] = DataValue;, DataValue значение mapped_type элемента со значением ключа _Key.

При использовании operator[] для вставки элементов, возвращаемая ссылка не отображает факта изменения вставка уже существующего элемента или создать новую. Функции-члены find и INSERT можно использовать для определения наличия элемент с указанным ключом уже перед вставкой.

Пример

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

int main( )
{
   using namespace std;
   typedef pair <const int, int> cInt2Int;
   map <int, int> m1;
   map <int, int> :: iterator pIter;
   
   // Insert a data value of 10 with a key of 1
   // into a map using the operator[] member function
   m1[ 1 ] = 10;

   // Compare other ways to insert objects into a map
   m1.insert ( map <int, int> :: value_type ( 2, 20 ) );
   m1.insert ( cInt2Int ( 3, 30 ) );

   cout  << "The keys of the mapped elements are:";
   for ( pIter = m1.begin( ) ; pIter != m1.end( ) ; pIter++ )
      cout << " " << pIter -> first;
   cout << "." << endl;

   cout  << "The values of the mapped elements are:";
   for ( pIter = m1.begin( ) ; pIter != m1.end( ) ; pIter++ )
      cout << " " << pIter -> second;
   cout << "." << endl;

   // If the key already exists, operator[]
   // changes the value of the datum in the element
   m1[ 2 ] = 40;

   // operator[] will also insert the value of the data
   // type's default constructor if the value is unspecified
   m1[5];

   cout  << "The keys of the mapped elements are now:";
   for ( pIter = m1.begin( ) ; pIter != m1.end( ) ; pIter++ )
      cout << " " << pIter -> first;
   cout << "." << endl;

   cout  << "The values of the mapped elements are now:";
   for ( pIter = m1.begin( ) ; pIter != m1.end( ) ; pIter++ )
      cout << " " << pIter -> second;
   cout << "." << endl;

// insert by moving key
    map<string, int> c2;
    string str("abc");
    cout << "c2[move(str)] == " << c2[move(str)] << endl;
    cout << "c2["abc"] == " << c2["abc"] << endl;

    return (0); 
}
  

Требования

Заголовок:<map>

Пространство имен: std

См. также

Ссылки

Класс map

Библиотека стандартных шаблонов