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


C++ list cbegin()、cend()用法及代碼示例


  1. list::cbegin(是C++ STL中的內置函數,該函數返回一個常數隨機訪問迭代器,該迭代器指向列表的開頭。因此,獲得的迭代器可用於迭代容器,但即使對象本身不是常量,也不能用於修改其指向的對象的內容。

    用法:

    list_name.cbegin()

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

    返回值:它返回一個常數隨機訪問迭代器,該迭代器指向列表的開頭。


    以下示例程序旨在說明上述函數:

    // C++ program to illustrate the 
    // cbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        // declaration of list 
        list<int> lis = { 5, 6, 7, 8, 9 }; 
      
        // Prints the first element 
        cout << "The first element is:" << *lis.cbegin(); 
      
        // printing list elements 
        cout << "\nList:"; 
      
        for (auto it = lis.cbegin(); it != lis.end(); ++it) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    The first element is:5
    List:5 6 7 8 9
    
  2. list::cend(是C++ STL中的內置函數,它返回一個常數隨機訪問迭代器,該迭代器指向列表的末尾。因此,獲得的迭代器可用於迭代容器,但即使對象本身不是常量,也不能用於修改其指向的對象的內容。

    用法:

    list_name.cend()

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

    返回值:它返回一個常數隨機訪問迭代器,該迭代器指向列表的末尾。

    以下示例程序旨在說明該函數:

    // C++ program to illustrate the 
    // cend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
      
        // declaration of list 
        list<int> lis = { 10, 20, 30, 40, 50 }; 
      
        // printing list elements 
        cout << "List:" << endl; 
      
        for (auto it = lis.cbegin(); it != lis.cend(); ++it) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    List:
    10 20 30 40 50
    


相關用法


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