C ++ Set Library - Fine funzione

Descrizione

Restituisce un iteratore che fa riferimento all'elemento past-the-end nel contenitore set.

Dichiarazione

Di seguito sono riportati i modi in cui std :: set :: end funziona in varie versioni C ++.

C ++ 98

iterator end();
const_iterator end() const;

C ++ 11

iterator end() noexcept;
const_iterator end() const noexcept;

Valore di ritorno

Restituisce un iteratore che fa riferimento all'elemento past-the-end nel contenitore set.

Eccezioni

Non genera mai eccezioni.

Complessità temporale

La complessità del tempo è costante.

Esempio

L'esempio seguente mostra l'utilizzo di std :: set :: end.

#include <iostream>
#include <set>

int main () {
   int myints[] = {50,40,30,20,10};
   std::set<int> myset (myints,myints+10);

   std::cout << "myset contains:";
   for (std::set<int>::iterator it = myset.begin(); it!=myset.end(); ++it)
      std::cout << ' ' << *it;

   std::cout << '\n';

   return 0;
}

Il programma precedente verrà compilato ed eseguito correttamente.

myset contains: -107717047 0 1 10 20 30 40 50 29015