该函数用于指向向量中的 past-the-last 元素(最后一个元素之后的元素)。
cend() 对比 end()
cend() 函数返回常量迭代器,而 end() 函数返回迭代器。 end() 函数指向的元素可以修改,但cend() 函数不能修改。
用法
考虑一个向量 'v',语法是:
const_iterator itr=v.cend();
参数
它不包含任何参数。
返回值
它返回一个指向向量中 thepast-the-last 元素的常量迭代器。
例子1
让我们看一个简单的例子。
#include <iostream>
#include<vector>
using namespace std;
int main()
{
vector<char> v{'T','u','t','o','r','i','a','l'};
vector<char>::const_iterator citr;
for(citr=v.cbegin();citr!=v.cend();citr++)
std::cout<<*citr;
return 0;
}
输出:
Tutorial
在此示例中,使用常量迭代器类型的对象访问 cend() 函数。
例子2
让我们看一个简单的例子。
#include <iostream>
#include<vector>
using namespace std;
int main()
{
vector<int> v{1,2,3,4,5};
vector<int>::const_iterator citr;
for(citr=v.cbegin();citr!=v.cend();citr++)
std::cout<<*citr<<" ";
return 0;
}
输出:
1 2 3 4 5
相关用法
- C++ Vector capacity()用法及代码示例
- C++ Vector crbegin()用法及代码示例
- C++ Vector crend()用法及代码示例
- C++ Vector clear()用法及代码示例
- C++ Vector cbegin()用法及代码示例
- C++ Vector front()用法及代码示例
- C++ Vector emplace()用法及代码示例
- C++ Vector hypot()用法及代码示例
- C++ Vector rend()用法及代码示例
- C++ Vector push_back()用法及代码示例
- C++ Vector insert()用法及代码示例
- C++ Vector swap()用法及代码示例
- C++ Vector pop_back()用法及代码示例
- C++ Vector begin()用法及代码示例
- C++ Vector size()用法及代码示例
- C++ Vector erase()用法及代码示例
- C++ Vector resize()用法及代码示例
- C++ Vector data()用法及代码示例
- C++ Vector back()用法及代码示例
- C++ Vector at()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Vector cend()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。