hash_set::empty
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_set Class.
Testy hash_set je prázdný.
bool empty( ) const;
Vrácená hodnota
true hash_set je prázdný; false Pokud je hash_set neprázdné.
Poznámky
V aplikaci Visual C++ .NET 2003, členové <hash_map> a <hash_set> jsou již v oboru názvů std soubory hlaviček, ale spíše být přesunut do oboru názvů stdext.Viz stdext obor názvů Další informace.
Příklad
// hash_set_empty.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_set <int> hs1, hs2;
hs1.insert ( 1 );
if ( hs1.empty( ) )
cout << "The hash_set hs1 is empty." << endl;
else
cout << "The hash_set hs1 is not empty." << endl;
if ( hs2.empty( ) )
cout << "The hash_set hs2 is empty." << endl;
else
cout << "The hash_set hs2 is not empty." << endl;
}
Požadavky
Záhlaví: <hash_set>
Obor názvů: stdext