multiset::empty
Sprawdza, czy zestaw wielokrotny jest pusty.
bool empty( ) const;
Wartość zwracana
TRUE Jeśli zestaw wielokrotny jest pusta; false Jeśli zestaw wielokrotny jest niepusty.
Przykład
// 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;
}
Wymagania
Nagłówek: <set>
Przestrzeń nazw: std