當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。