C++의 Array 클래스는 충분히 효율적이며 자체 크기도 알고 있습니다.
배열에서 작업을 수행하는 데 사용되는 함수는
- size() =배열의 크기를 반환합니다. 즉, 배열의 요소 수를 반환합니다.
- max_size() =배열 요소의 최대 수를 반환합니다.
- get(), at(), operator[] =배열 요소에 액세스하려면
- front() =배열의 앞 요소를 반환합니다.
- back() =배열의 마지막 요소를 반환합니다.
- empty() =배열 크기가 true이면 true를 반환하고 그렇지 않으면 false를 반환합니다.
- fill() =전체 배열을 특정 값으로 채우려면
- swap() =한 배열의 요소를 다른 배열로 교체합니다.
다음은 위에서 언급한 모든 작업을 구현하는 예입니다. -
예시 코드
#include<iostream>
#include<array>
using namespace std;
int main() {
array<int,4>a = {10, 20, 30, 40};
array<int,4>a1 = {50, 60, 70, 90};
cout << "The size of array is : ";
//size of the array using size()
cout << a.size() << endl;
//maximum no of elements of the array
cout << "Maximum elements array can hold is : ";
cout << a.max_size() << endl;
// Printing array elements using at()
cout << "The array elements are (using at()) : ";
for ( int i=0; i<4; i++)
cout << a.at(i) << " ";
cout << endl;
// Printing array elements using get()
cout << "The array elements are (using get()) : ";
cout << get<0>(a) << " " << get<1>(a) << " "<<endl;
cout << "The array elements are (using operator[]) : ";
for ( int i=0; i<4; i++)
cout << a[i] << " ";
cout << endl;
// Printing first element of array
cout << "First element of array is : ";
cout << a.front() << endl;
// Printing last element of array
cout << "Last element of array is : ";
cout << a.back() << endl;
cout << "The second array elements before swapping are : ";
for (int i=0; i<4; i++)
cout << a1[i] << " ";
cout << endl;
// Swapping a1 values with a
a.swap(a1);
// Printing 1st and 2nd array after swapping
cout << "The first array elements after swapping are : ";
for (int i=0; i<4; i++)
cout << a[i] << " ";
cout << endl;
cout << "The second array elements after swapping are : ";
for (int i = 0; i<4; i++)
cout << a1[i] << " ";
cout << endl;
// Checking if it is empty
a1.empty()? cout << "Array is empty":
cout << "Array is not empty";
cout << endl;
// Filling array with 1
a.fill(1);
// Displaying array after filling
cout << "Array content after filling operation is : ";
for ( int i = 0; i<4; i++)
cout << a[i] << " ";
return 0;
} 출력
The size of array is : 4 Maximum elements array can hold is : 4 The array elements are (using at()) : 10 20 30 40 The array elements are (using get()) : 10 20 The array elements are (using operator[]) : 10 20 30 40 First element of array is : 10 Last element of array is : 40 The second array elements before swapping are : 50 60 70 90 The first array elements after swapping are : 50 60 70 90 The second array elements after swapping are : 10 20 30 40 Array is not empty Array content after filling operation is : 1 1 1 1