Compartilhar via


vector::empty

Testa se o vetor contém elementos.

bool empty( ) const;

Valor de retorno

True se o vetor está vazio. false se o vetor não está vazio.

Exemplo

// vector_empty.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;   
   vector <int> v1;

   v1.push_back( 10 );

   if ( v1.empty( ) )
      cout << "The vector is empty." << endl;
   else
      cout << "The vector is not empty." << endl;
}
  

Requisitos

Cabeçalho: <vector>

Namespace: std

Consulte também

Referência

Classe vector

vector::empty, vector::erase e vector::push_back

Biblioteca de Modelos Padrão