数组与C-style数组相比,这些类通常更高效,轻巧且可靠。 C++ 11中数组类的引入为C-style数组提供了更好的替代方法。
array::fill()
此函数用于为数组容器的所有元素设置一个公共值。
用法:
arrayname.fill(value) 参数: The value to be set for all the elements of the container is passed as parameter. Result: All the elements of the container are set to be equal to the parameter passed.
例子:
Input :myarray = {1, 2, 3, 4} myarray.fill(5); Output:myarray = {5, 5, 5, 5} Input :myarray = {1, 2, 3, 4, 5, 6, 7} myarray.fill(2); Output:myarray = {2, 2, 2, 2, 2, 2, 2}
错误和异常
1.如果赋值操作抛出错误,则抛出错误。
2.它具有基本的无异常抛出保证。
// CPP program to illustrate
// Implementation of fill() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
// array container declaration
array<int, 4> myarray{ 1, 2, 3, 4 };
// Using fill() function to
myarray.fill(5);
// printing the array
for(auto it=myarray.begin(); it<myarray.end(); ++it)
cout<<*it<<" ";
return 0;
}
输出:
5 5 5 5
array::swap()
此函数用于将一个数组的内容与相同类型和大小的另一个数组交换。
用法:
arrayname1.swap(arrayname2) 参数: The name of the array with which the contents have to be swapped. Result: All the elements of the 2 array are swapped.
例子:
Input :myarray1 = {1, 2, 3, 4} myarray2 = {3, 5, 7, 9} myarray1.swap(myarray2); Output:myarray1 = {3, 5, 7, 9} myarray2 = {1, 2, 3, 4} Input :myarray1 = {1, 3, 5, 7} myarray2 = {2, 4, 6, 8} myarray1.swap(myarray2); Output:myarray1 = {2, 4, 6, 8} myarray2 = {1, 3, 5, 7}
错误和异常
1.如果数组不是同一类型,则会引发错误。
2.如果数组的大小不同,则会引发错误。
2.它具有基本的无异常抛出保证。
// CPP program to illustrate
// Implementation of swap() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
// array container declaration
array<int, 4> myarray1{ 1, 2, 3, 4 };
array<int, 4> myarray2{ 3, 5, 7, 9 };
// using swap() function to swap elements of arrays
myarray1.swap(myarray2);
// printing the first array
cout<<"myarray1 = ";
for(auto it=myarray1.begin(); it<myarray1.end(); ++it)
cout<<*it<<" ";
// printing the second array
cout<<endl<<"myarray2 = ";
for(auto it=myarray2.begin(); it<myarray2.end(); ++it)
cout<<*it<<" ";
return 0;
}
输出:
myarray1 = 3 5 7 9 myarray2 = 1 2 3 4
相关用法
注:本文由纯净天空筛选整理自AyushSaxena大神的英文原创作品 array::fill() and array::swap() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。