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


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