[ Web Proxy ]
URL:
Viewing: https://fr.cppreference.com/cpp/container/stack/top [Back]  [Original]

std::stack::top cppreference.com
cppreference.com
Espaces de noms
Variantes

std::stack::top

De cppreference.com

<metanoindex/>

 
 
 
std :: pile
Les fonctions membres
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::stack
stack::~stack
stack::operator=
Elment d'accs
Original:
Element access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::top
Capacit
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::empty
stack::size
Modificateurs
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::push
stack::emplace
stack::pop
stack::swap
 
<tbody> </tbody>
reference top();
const_reference top() const;
Renvoie rfrence l'lment suprieur de la pile. C'est l'lment le plus rcemment pouss. Cet lment sera supprim sur un appel pop(). Appelle effectivement c.back() .
Original:
Returns reference to the top element in the stack. This is the most recently pushed element. This element will be removed on a call to pop(). Effectively calls c.back().
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Paramtres

(Aucun)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Retourne la valeur

rfrence au dernier lment
Original:
reference to the last element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Complexit

Constante
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Voir aussi

insre l'lment en haut
Original:
inserts element at the top
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]
supprime l'lment suprieur
Original:
removes the top element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]

Exemple

#include <stack>
#include <iostream>

int main()
{
    std::stack<int>   s;

    s.push( 2 );
    s.push( 6 );
    s.push( 51 );

    std::cout << s.size() << " elements on stack\n";
    std::cout << "Top element: "
	      << s.top()         // Leaves element on stack
	      << "\n";
    std::cout << s.size() << " elements on stack\n";
    s.pop();
    std::cout << s.size() << " elements on stack\n";
    std::cout << "Top element: " << s.top() << "\n";
  
    return 0;
}

Rsultat :

3 elements on stack
Top element: 51
3 elements on stack
2 elements on stack
Top element: 6

Web Proxy Viewer  |  New URL  |  Original Page