hash_map::empty (STL/CLR)
요소가 없는지 여부 테스트를 제공 합니다.
bool empty();
설명
멤버 함수에 대 한 빈 제어 시퀀스 true를 반환합니다.해당 하는 hash_map::size (STL/CLR)() == 0.이 hash_map가 비어 있는지 여부를 테스트할 수 있습니다.
예제
// cliext_hash_map_empty.cpp
// compile with: /clr
#include <cliext/hash_map>
typedef cliext::hash_map<wchar_t, int> Myhash_map;
int main()
{
Myhash_map c1;
c1.insert(Myhash_map::make_value(L'a', 1));
c1.insert(Myhash_map::make_value(L'b', 2));
c1.insert(Myhash_map::make_value(L'c', 3));
// display contents " [a 1] [b 2] [c 3]"
for each (Myhash_map::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
System::Console::WriteLine("size() = {0}", c1.size());
System::Console::WriteLine("empty() = {0}", c1.empty());
// clear the container and reinspect
c1.clear();
System::Console::WriteLine("size() = {0}", c1.size());
System::Console::WriteLine("empty() = {0}", c1.empty());
return (0);
}
요구 사항
헤더: < cliext/hash_map >
네임 스페이스: cliext