Difference between revisions of "Template:cpp/container/push back"
From cppreference.com
m (→Notes: fixing fmt (Notes only for vector)) |
m (→Exceptions: +link to SEG.) |
||
Line 52: | Line 52: | ||
===Exceptions=== | ===Exceptions=== | ||
− | If an exception is thrown (which can be due to {{tt|Allocator::allocate()}} or element copy/move constructor/assignment), this function has no effect (strong exception guarantee). | + | If an exception is thrown (which can be due to {{tt|Allocator::allocate()}} or element copy/move constructor/assignment), this function has no effect ([[cpp/language/exceptions#Exception safety|strong exception guarantee]]). |
{{#ifeq: {{{1|}}} | vector | | {{#ifeq: {{{1|}}} | vector | | ||
{{rrev | since=c++11 | | {{rrev | since=c++11 | | ||
Line 60: | Line 60: | ||
Calling {{tt|push_back}} will cause reallocation (when {{lc|size}}{{tt|()+1 > <!-- -->}}{{lc|capacity}}{{tt|()}}), so some implementations also throw {{lc|std::length_error}} when {{tt|push_back}} causes a reallocation that would exceed {{lc|max_size}} (due to implicitly calling an equivalent of {{lc|reserve}}{{tt|(}}{{lc|size}}{{tt|()+1))}}. | Calling {{tt|push_back}} will cause reallocation (when {{lc|size}}{{tt|()+1 > <!-- -->}}{{lc|capacity}}{{tt|()}}), so some implementations also throw {{lc|std::length_error}} when {{tt|push_back}} causes a reallocation that would exceed {{lc|max_size}} (due to implicitly calling an equivalent of {{lc|reserve}}{{tt|(}}{{lc|size}}{{tt|()+1))}}. | ||
}} | }} | ||
+ | |||
===Example=== | ===Example=== | ||
{{example | {{example |
Revision as of 14:26, 17 July 2022
void push_back( const T& value ); |
(1) | (since {std}) |
void push_back( T&& value ); |
(2) | (since C++11) |
Appends the given element value
to the end of the container.
1) The new element is initialized as a copy of
value
.2)
value
is moved into the new element.Information on iterator invalidation is copied from here |
Contents |
Parameters
value | - | the value of the element to append |
Type requirements | ||
-T must meet the requirements of CopyInsertable in order to use overload (1).
| ||
-T must meet the requirements of MoveInsertable in order to use overload (2).
|
Return value
(none)
Complexity
Templated information. See page source. |
Exceptions
If an exception is thrown (which can be due to Allocator::allocate()
or element copy/move constructor/assignment), this function has no effect (strong exception guarantee).
Example
Run this code
#include <list> #include <iostream> #include <iomanip> #include <string> int main() { std::list<std::string> letters; letters.push_back("abc"); std::string s{"def"}; letters.push_back(std::move(s)); std::cout << "std::list `letters` holds: "; for (auto&& e : letters) std::cout << std::quoted(e) << ' '; std::cout << "\nMoved-from string `s` holds: " << std::quoted(s) << '\n'; }
Possible output:
std::list `letters` holds: "abc" "def" Moved-from string `s` holds: ""
See also
(C++11) |
constructs an element in-place at the end (public member function of std::{{{1}}} )
|
inserts an element to the beginning (public member function of std::{{{1}}} )
| |
removes the last element (public member function of std::{{{1}}} )
| |
creates a std::back_insert_iterator of type inferred from the argument (function template) |