std::span<T,Extent>::back
来自 cppreference.com
constexpr reference back() const; |
(自 C++20 起) | |
返回对 span 中最后一个元素的引用。
在空 span 上调用 `back` 会导致未定义的行为。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
对尾部元素的引用。
[编辑] 复杂度
常数。
[编辑] 备注
对于 span `c`,表达式 c.back() 等效于 *(c.end() - 1)。
[编辑] 示例
运行此代码
#include <iostream> #include <span> void print_forward(std::span<const int> const span) { for (auto n{span.size()}; n != 0; --n) std::cout << span.last(n).front() << ' '; std::cout << '\n'; } void print_backward(std::span<const int> const span) { for (auto n{span.size()}; n != 0; --n) std::cout << span.first(n).back() << ' '; std::cout << '\n'; } int main() { constexpr int numbers[]{0, 1, 2, 3, 4}; print_forward(numbers); print_backward(numbers); }
输出
0 1 2 3 4 4 3 2 1 0
[编辑] 另请参阅
访问第一个元素 (公有成员函数) |