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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。