Namespaces
Variants
Views
Actions

Difference between revisions of "Template:cpp/container/back"

From cppreference.com
m (Text replace - "<!-- ======== --> " to "")
 
(31 intermediate revisions by 14 users not shown)
Line 1: Line 1:
{{cpp/container/{{{1|}}}/title | back}}
+
{{#vardefine:cont|{{{1|vector}}}}}<!--
{{cpp/container/{{{1|}}}/sidebar}}
+
-->{{cpp/container/{{#var:cont}}/title|back}}
{{ddcl list begin}}
+
{{cpp/container/{{#var:cont}}/navbar}}
{{ddcl list item | notes={{cpp/container/mark c++0x feature | {{{1|}}} }} |
+
{{dcl begin}}
 +
{{#switch:{{#var:cont}}
 +
|array=
 +
{{dcl|num=1|since=c++11|notes={{mark constexpr since c++17}}|
 
reference back();
 
reference back();
 
}}
 
}}
{{ddcl list item | notes={{cpp/container/mark c++0x feature | {{{1|}}} }} |
+
{{dcl|num=2|since=c++11|notes={{mark constexpr since c++14}}|
 
const_reference back() const;
 
const_reference back() const;
 
}}
 
}}
{{ddcl list end}}
+
|vector=
 +
{{dcl|num=1|notes={{mark constexpr since c++20}}|
 +
reference back();
 +
}}
 +
{{dcl|num=2|notes={{mark constexpr since c++20}}|
 +
const_reference back() const;
 +
}}
 +
|inplace_vector=
 +
{{dcl|num=1|since=c++26|
 +
constexpr reference back();
 +
}}
 +
{{dcl|num=2|since=c++26|
 +
constexpr const_reference back() const;
 +
}}
 +
|
 +
{{dcl|num=1|since={{cpp/std|{{#var:cont}}}}|
 +
reference back();
 +
}}
 +
{{dcl|num=2|since={{cpp/std|{{#var:cont}}}}|
 +
const_reference back() const;
 +
}}
 +
}}
 +
{{dcl end}}
  
Returns reference to the last element in the container.  
+
Returns a reference to the last element in the container.
 +
 
 +
Calling {{tt|back}} on an empty container causes [[cpp/language/ub|undefined behavior]].
  
 
===Parameters===
 
===Parameters===
{{param none}}
+
(none)
  
 
===Return value===
 
===Return value===
 
+
Reference to the last element.
reference to the last element
+
  
 
===Complexity===
 
===Complexity===
{{complex constant}}
+
Constant.
  
===See also===
+
===Notes===
 +
For a non-empty container {{tt|c}}, the expression {{c|c.back()}} is equivalent to {{c|*std::prev(c.end())}}.
  
{{dcl list begin}}
+
===Example===
{{dcl list template | cpp/container/dcl list front |{{{1|}}}}}
+
{{example
{{dcl list end}}
+
|code=
 +
#include <cassert>
 +
#include <{{#var:cont}}>
 +
 
 +
int main()
 +
{
 +
    std::{{#var:cont}}<char{{#switch:{{#var:cont}}|inplace_vector|array=, 4}}> letters{'a', 'b', 'c', 'd'};
 +
    assert(letters.back() == 'd');
 +
}
 +
}}
 +
 
 +
===See also===
 +
{{dsc begin}}
 +
{{dsc inc|cpp/container/dsc front|{{#var:cont}}}}
 +
{{dsc inc|cpp/container/dsc rbegin|{{#var:cont}}}}
 +
{{dsc inc|cpp/container/dsc end|{{#var:cont}}}}
 +
{{dsc end}}

Latest revision as of 15:30, 15 August 2024

 
 
 
 
reference back();
(1) (constexpr since C++20)
const_reference back() const;
(2) (constexpr since C++20)

Returns a reference to the last element in the container.

Calling back on an empty container causes undefined behavior.

Contents

[edit] Parameters

(none)

[edit] Return value

Reference to the last element.

[edit] Complexity

Constant.

[edit] Notes

For a non-empty container c, the expression c.back() is equivalent to *std::prev(c.end()).

[edit] Example

#include <cassert>
#include <vector>
 
int main()
{
    std::vector<char> letters{'a', 'b', 'c', 'd'};
    assert(letters.back() == 'd');
}

[edit] See also

access the first element
(public member function of std::vector<T,Allocator>) [edit]
returns a reverse iterator to the beginning
(public member function of std::vector<T,Allocator>) [edit]
(C++11)
returns an iterator to the end
(public member function of std::vector<T,Allocator>) [edit]