Compartilhar via


map::clear

Apaga todos os elementos de um mapa.

void clear( );

Exemplo

A o criar este exemplo com o sinalizador de /Wp64 ou em uma plataforma de 64 bits, o compilador que avisará C4267 será gerado.Para obter mais informações sobre este aviso, consulte C4267 de aviso (nível 3) do compilador.

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

int main()
{
    using namespace std;
    map<int, int> m1;
    map<int, int>::size_type i;
    typedef pair<int, int> Int_Pair;

    m1.insert(Int_Pair(1, 1));
    m1.insert(Int_Pair(2, 4));

    i = m1.size();
    cout << "The size of the map is initially "
         << i << "." << endl;

    m1.clear();
    i = m1.size();
    cout << "The size of the map after clearing is "
         << i << "." << endl;
}
  
  

Requisitos

Cabeçalho: <map>

namespace: STD

Consulte também

Referência

map Class

map::max_size, map::clear, map::erase, e map::size

Standard Template Library