C++ 参考手册

位置:首页 > C++ 参考手册 >容器库 >std::forward_list > std::forward_list<T,Allocator>::before_begin, cbefore_begin

iterator before_begin() noexcept;
(C++11 起)
const_iterator before_begin() const noexcept;
(C++11 起)
const_iterator cbefore_begin() const noexcept;
(C++11 起)

返回指向首元素前一元素的迭代器。此元素表现为占位符,试图访问它会导致未定义行为。仅有的使用情况是在函数 insert_after()emplace_after()erase_after()splice_after() 和迭代器自增中:自增始前迭代器准确地给出与从 begin()/cbegin() 获得者相同的迭代器。

参数

(无)

返回值

指向首元素前一元素的迭代器。

复杂度

常数。

参阅

返回指向容器第一个元素的迭代器
(公开成员函数)
返回指向容器尾端的迭代器
(公开成员函数)