vector::empty
Comprueba si el vector contiene algún elemento.
bool empty( ) const;
Valor devuelto
true si el vector está vacío; false si el vector no está vacío.
Ejemplo
// 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
Encabezado: <vector>
Espacio de nombres: std