std::deque::crend
const_reverse_iterator crend() const noexcept;
Returns a const_reverse_iterator pointing to the theoretical element preceding the first element in the container (which is considered itsreverse end).
const_reverse_iterator指向理论上存在于数组第一个元素之前位置的元素,这个元素被认为是反向的超尾元素。
Parameters
none
Return Value
A const_reverse_iterator to the reverse end of the sequence.
返回一个const_reverse_iterator指向序列的反向超尾元素。
Member type const_reverse_iterator is a reverse random access iterator type that points to
a const element (see deque member types).
迭代器属于随机迭代器。
Example
|
|
Output:
mydeque backwards: 5 4 3 2 1
|
Complexity
Constant.
Iterator validity
No changes.
Data races
The container is accessed.
No contained elements are accessed by the call, but the iterator returned can be used to access them. Concurrently accessing or modifying different elements is safe.
容器的元素不会被访问,但是返回的迭代器可以被用来访问元素,同时访问以及修改其他元素是安全的。
Exception safety
No-throw guarantee: this member function never throws exceptions.
The copy construction or assignment of the returned iterator is also guaranteed to never throw.
通过复制构造器以及赋值构造获得的该iterator也保证不会抛出异常。
——————————————————————————————————————————————————————————————————
//翻译的不好的地方请多多指导,可以在下面留言或者点击左上方邮件地址给我发邮件,指出我的错误以及不足,以便我修改,更好的分享给大家,谢谢。
转载请注明出处:http://blog.csdn.net/qq844352155
author:天下无双
Email:coderguang@gmail.com
2014-9-1
于GDUT
——————————————————————————————————————————————————————————————————