std::stack::emplace – cppreference.com
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>
|
|
(seit C++11) | |
Pushes new element on top of the stack. The element is constructed in-place, i.e. no copy or move operations are performed. The constructor of the element is called with exactly the same arguments, as supplied to the function.
Effectively calls c.emplace_back(std::forward<Args>(args)...)
Parameter
| args | - | Argumente, die an den Konstruktor des Elements weiterzuleiten Original: arguments to forward to the constructor of the element The text has been machine-translated via Google Translate. |
Rückgabewert
(None)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Komplexität
Logarithmisch in der Größe des Behälters .
Original:
Logarithmic in the size of the container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Siehe auch
| inserts element at the top (öffentliche Elementfunktion) [edit] | |
entfernt das oberste Element Original: removes the top element The text has been machine-translated via Google Translate. (öffentliche Elementfunktion) [edit] | |