当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ forward_list::cend()用法及代码示例


forward_list::cend() 是 C++ STL 中的一个函数,它返回一个指向 forward_list 的 past-the-last 元素的常量迭代器。函数返回的迭代器并不指向容器中的任何元素,而是指向前向列表容器的最后一个元素所跟随的位置。

函数返回的迭代器指向常量内容。由于迭代器本身不是常量,它可以增加、减少或修改,但即使前向列表不是常量,也不能用于修改其内容。
由于迭代器不指向前向列表的任何元素,因此在任何情况下都不能取消引用。

用法:

forward_list_name.cend()

参数:该函数不接受任何参数。

返回值:该函数返回一个指向前向列表容器的 past-the-end 元素的迭代器。

以下程序说明了 forward_list::cend() 函数的使用:


// CPP program to illustrate
// forward_list::cend();
  
#include <forward_list>
#include <iostream>
using namespace std;
  
int main()
{
  
    // Initializing the forward list
    forward_list<int> sample = { 7, 54, 47, 48 };
  
    // Display sample
    cout << "sample:";
    for (auto it = sample.cbegin();
         it != sample.cend();
         it++)
        cout << *it << " ";
}
输出:
sample:7 54 47 48

相关用法


注:本文由纯净天空筛选整理自tufan_gupta2000大神的英文原创作品 forward_list::cend() in C++ STL with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。