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


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