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


set::clear

Удаляет все элементы набора.

void clear( );

Пример

// set_clear.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;   
   set <int> s1;
   
   s1.insert( 1 );
   s1.insert( 2 );

   cout << "The size of the set is initially " << s1.size( )
        << "." << endl;

   s1.clear( );
   cout << "The size of the set after clearing is " 
        << s1.size( ) << "." << endl;
}
  

Требования

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

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

См. также

Ссылки

Класс set

set::empty и set::clear

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