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


C++ forward_list cbegin()用法及代碼示例


forward_list::cbegin()是C++ STL中的一個函數,該函數返回一個常量迭代器,該迭代器指向forward_list的第一個元素。

用法:

forward_list_name.cbegin()

參數:該函數不接受任何參數。


返回值:此函數返回一個指向const內容的迭代器。由於迭代器不是恒定的,因此可以增加或減少或修改它,但是即使前向列表不是恒定的,也不能用於修改其內容。如果轉發列表為空,則不會取消引用該函數返回的迭代器。

以下程序說明了該函數的用法:

示例1:

// CPP program to illustrate 
// forward_list::cbegin(); 
  
#include <forward_list> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    forward_list<int> sample = { 45, 87, 6 }; 
  
    // Get the first element by 
    // dereferencing the iterator 
    // returned by sample.cbegin() 
    cout << "1st element of sample: "; 
    cout << *sample.cbegin(); 
}
輸出:
1st element of sample: 45

示例2:

#include <forward_list> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    forward_list<int> sample = { 7, 4, 9, 15 }; 
  
    // Display the elements 
  
    cout << "sample: "; 
    for (auto it = sample.cbegin(); it != sample.cend(); it++) 
        cout << *it << " "; 
}
輸出:
sample: 7 4 9 15


相關用法


注:本文由純淨天空篩選整理自tufan_gupta2000大神的英文原創作品 forward_list cbegin() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。