Partilhar via


map::empty

Testa se um mapa está vazia.

bool empty( ) const;

Valor de retorno

true se o mapa estiver vazia; false se o mapa não está vazia.

Exemplo

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

int main( )
{
   using namespace std;
   map <int, int> m1, m2;

   typedef pair <int, int> Int_Pair;
   m1.insert ( Int_Pair ( 1, 1 ) );

   if ( m1.empty( ) )
      cout << "The map m1 is empty." << endl;
   else
      cout << "The map m1 is not empty." << endl;

   if ( m2.empty( ) )
      cout << "The map m2 is empty." << endl;
   else
      cout << "The map m2 is not empty." << endl;
}
  

Requisitos

mapa <deCabeçalho: >

Namespace: std

Consulte também

Referência

Classe map

Biblioteca de Modelos Padrão