Поделиться через


multiset::empty

Если тесты multiset пуст.

bool empty( ) const;

Возвращаемое значение

true, если multiset пуст; false, если multiset nonempty.

Пример

// 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;
}
  

Требования

Заголовок:<set>

Пространство имен: std

См. также

Ссылки

Класс multiset

Библиотека стандартных шаблонов