std::stack::top - cppreference.com
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody>
|
|
||
|
|
||
Restituisce riferimento all'elemento superiore nella pila. Questo è l'elemento più recente spinta. Questo elemento verrà rimosso in una chiamata a pop(). Chiama efficacemente 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.
Parametri
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Valore di ritorno
riferimento all'ultimo elemento
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.
Complessità
Constant
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Vedi anche
| inserts element at the top (metodo pubblico) [modifica] | |
rimuove l'elemento superiore Original: removes the top element The text has been machine-translated via Google Translate. (metodo pubblico) [modifica] | |
Esempio
#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; }
Output:
3 elements on stack Top element: 51 3 elements on stack 2 elements on stack Top element: 6