博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
stl vector 函数_vector :: crend()函数以及C ++ STL中的示例
阅读量:2529 次
发布时间:2019-05-11

本文共 1993 字,大约阅读时间需要 6 分钟。

stl vector 函数

C ++ vector :: crend()函数 (C++ vector::crend() function)

vector::crend() is a library function of "vector" header, it is used to get the first element of a vector from reverse ending, it returns a const reverse iterator pointing to the element preceding the first element (i.e. reverse ending) of a vector.

vector :: crend()“ vector”头文件的库函数,用于从反向结尾获取向量的第一个元素,它返回一个const反向迭代器,指向第一个元素之前的元素(即反向结尾)向量。

It returns a const_reverse_iterator which is an iterator point to the constant content(vector), the const_reverse_itertator can be increased or decreased just like an iterator but it cannot be used to update/modify the vector content it points to.

它返回const_reverse_iterator ,它是指向常量content(vector)的迭代器,可以像迭代器一样增加或减少const_reverse_itertator ,但不能用于更新/修改其指向的向量内容。

Note: To use vector, include <vector> header.

注意:要使用向量,请包含<vector>标头。

Syntax of vector::crend() function

vector :: crend()函数的语法

vector::crend();

Parameter(s): none – It accepts nothing.

参数: 无 –不接受任何内容。

Return value: const_reverse_iterator – It returns a const reverse iterator pointing to the element preceding the first elements of the vector.

返回值: const_reverse_iterator –它返回一个const反向迭代器,指向向量的第一个元素之前的元素。

Example:

例:

Input:    vector
vector1{ 1, 2, 3, 4, 5 }; Function call: vector
::const_iterator crit; crit = vector1.crend()-1; cout< C++ program to demonstrate example of vector::crend() function Output first element is: 10 Reference:
TOP Interview Coding Problems/Challenges
Comments and Discussions
Ad:Are you a blogger? Join our .
Please enable JavaScript to view the

翻译自:

stl vector 函数

转载地址:http://irxzd.baihongyu.com/

你可能感兴趣的文章
DSB
查看>>
Java中的阻塞队列
查看>>
前端软件sublime的一些常用快捷键
查看>>
openssl 升级
查看>>
2017.10.30 天晴 昨天十公里没减肥
查看>>
Git 打标签(分布式版本控制系统)
查看>>
ASP.NET MVC:通过 FileResult 向 浏览器 发送文件
查看>>
CVE-2010-2883Adobe Reader和Acrobat CoolType.dll栈缓冲区溢出漏洞分析
查看>>
使用正确的姿势跨域
查看>>
AccountManager教程
查看>>
Android学习笔记(十一)——从意图返回结果
查看>>
算法导论笔记(四)算法分析常用符号
查看>>
HttpClient读取数据乱码的解决方案
查看>>
如何使用FireBug插件查询元素的xPath属性
查看>>
ultraedit激活
查看>>
总结(6)--- python基础知识点小结(细全)
查看>>
亿级曝光品牌视频的幕后设定
查看>>
ARPA
查看>>
JSP开发模式
查看>>
我的Android进阶之旅------&gt;Android嵌入图像InsetDrawable的使用方法
查看>>