vector::empty
Teste se o vetor está vazia.
bool empty( ) const;
Valor de retorno
true se o vetor está vazia; false se o vetor não está vazia.
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