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


C++ array::cbegin()、array::cend()用法及代码示例


  1. array::cbegin()是C++ STL中的内置函数,该函数返回指向数组中第一个元素的const_iterator。无法使用array::begin(修改数组中的元素。

    用法:

    array_name.cbegin() 

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

    返回值:该函数返回一个const_iterator,它指向数组中的第一个元素。


    程序1:

    // CPP program to illustrate 
    // the array::cbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        array<int, 5> arr = { 1, 5, 2, 4, 7 }; 
      
        // Prints the first element 
        cout << "The first element is " << *(arr.cbegin()) << "\n"; 
      
        // Print all the elements 
        cout << "The array elements are:"; 
        for (auto it = arr.cbegin(); it != arr.cend(); it++) 
            cout << *it << " "; 
        return 0; 
    }
    输出:
    The first element is 1
    The array elements are:1 5 2 4 7
    
  2. array::cend()是C++ STL中的内置函数,该函数返回const_iterator,它指向数组中最后一个元素之后的理论元素。

    用法:

    array_name.cend() 

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

    返回值:该函数返回一个const_iterator,它指向数组中最后一个元素之后的理论元素。

    程序1:

    // CPP program to illustrate 
    // the array::cend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        array<int, 5> arr = { 1, 5, 2, 4, 7 }; 
      
        // prints all the elements 
        cout << "The array elements are:"; 
        for (auto it = arr.cbegin(); it != arr.cend(); it++) 
            cout << *it << " "; 
        return 0; 
    }
    输出:
    The array elements are:1 5 2 4 7
    


相关用法


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