multiset::empty
Prueba si un conjunto múltiple está vacío.
bool empty( ) const;
Valor devuelto
TRUE si el conjunto múltiple está vacío; Falso si el conjunto múltiple no está vacío.
Ejemplo
// multiset_empty.cpp
// compile with: /EHsc
#include <set>
#include <iostream>
int main( )
{
using namespace std;
multiset <int> ms1, ms2;
ms1.insert ( 1 );
if ( ms1.empty( ) )
cout << "The multiset ms1 is empty." << endl;
else
cout << "The multiset ms1 is not empty." << endl;
if ( ms2.empty( ) )
cout << "The multiset ms2 is empty." << endl;
else
cout << "The multiset ms2 is not empty." << endl;
}
Requisitos
encabezado: <conjunto>
espacio de nombres: std