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


C++ array::begin()、array::end()用法及代碼示例


數組類通常比C-style數組更有效,更輕量且更可靠。 C++ 11中數組類的引入為C-style數組提供了更好的替代方法。

array::begin()

begin()函數用於返回指向數組容器第一個元素的迭代器。 begin()函數將雙向迭代器返回到容器的第一個元素。

用法:


arrayname.begin()
參數:
No parameters are passed.

返回:
This function returns a bidirectional
iterator pointing to the first element.

例子:

Input :myarray{1, 2, 3, 4, 5};
Output:returns an iterator to the element 1

Input :myarray{8, 7};         
Output:returns an iterator to the element 8

錯誤和異常

1.它沒有異常拋出保證。
2.傳遞參數時顯示錯誤。

// CPP program to illustrate 
// Implementation of begin() function 
#include <array> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    // declaration of array container 
    array<int, 5> myarray{ 1, 2, 3, 4, 5 }; 
  
    // using begin() to print array 
    for (auto it = myarray.begin(); 
         it != myarray.end(); ++it) 
        cout << ' ' << *it; 
  
    return 0; 
}

輸出:

1 2 3 4 5
array::end()

end()函數用於返回指向數組容器最後一個元素的迭代器。 end()函數將雙向迭代器返回到容器的最後一個元素。

用法:

arrayname.end()
參數:
No parameters are passed.

返回:
This function returns a bidirectional
iterator pointing to the last element.

例子:

Input :myarray{1, 2, 3, 4, 5};
Output:returns an iterator to the element 5

Input :myarray{8, 7};
Output:returns an iterator to the element 7

錯誤和異常

1.它沒有異常拋出保證。
2.傳遞參數時顯示錯誤。

// CPP program to illustrate 
// Implementation of end() function 
#include <array> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    // declaration of array container 
    array<int, 5> myarray{ 1, 2, 3, 4, 5 }; 
  
    // using end() to print array 
    for (auto it = myarray.begin(); 
         it != myarray.end(); ++it) 
        cout << ' ' << *it; 
    return 0; 
}

輸出:

1 2 3 4 5


相關用法


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