배열 연속 메모리 위치에 동일한 데이터 유형의 여러 데이터 요소를 저장하는 C++의 데이터 구조입니다.
C++ 프로그래밍 언어에는 배열 유형을 조작하는 내장 함수가 있습니다. 일부 함수는 다차원 배열에도 적용할 수 있습니다. 배열 헤더 파일에는 C++ 프로그래밍 언어로 배열을 조작하는 함수가 포함되어 있습니다.
C++에서 배열을 조작하는 몇 가지 일반적인 방법은 -
is_array()
이 함수는 함수에 전달된 변수가 배열 유형인지 확인하는 데 사용됩니다. 이 방법은 std::배열도 검사에서 거부된 배열을 인식하는 데 엄격합니다. 반환 유형은 정수입니다. 즉, 배열이 전달되면 true(1)를 반환하고 그렇지 않으면 False(0)를 반환합니다.
예
#include<type_traits> #include<iostream> #include<array> #include<string> using namespace std; int main(){ cout<<"Checking if int is an array ? : "; is_array<int>::value?cout<<"True":cout<<"False"; cout<<"\nChecking if int[] is an array? : "; is_array<int[6]>::value?cout<<"True":cout<<"False"; cout<<"\nChecking if 2D Array is an array? : "; is_array<int[2][3]>::value?cout<<"True":cout<<"False"; cout<<"\nChecking if String is an array? : "; is_array<string>::value?cout<<"True":cout<<"False"; cout<<"\nChecking if Character Array is an array? : "; is_array<char[4]>::value?cout<<"True":cout<<"False"; cout << endl; return 0; }
출력
Checking if int is an array ? : False Checking if int[] is an array? : True Checking if 2D Array is an array? : True Checking if String is an array? : False Checking if Character Array is an array? : True
is_same()
이 함수는 전달된 두 유형이 정확히 동일한 청사진을 가지고 있는지 확인하는 데 사용됩니다. 즉, 둘 다 유형이 같아야 합니다. 개념을 명확하게 하는 이 예를 살펴보겠습니다 -
예
#include<type_traits> #include<iostream> #include<array> #include<string> using namespace std; int main(){ cout << "Checking if 1D array is same as 1D array (Different sizes) ? : " ; is_same<int[3],int[4]>::value?cout<<"True":cout<<"False"; cout << "\nChecking if 1D array is same as 1D array? (Same sizes): " ; is_same<int[5],int[5]>::value?cout<<"True":cout<<"False"; cout << "\nChecking If 2D array is same as 1D array? : "; is_same<int[3],int[3][4]>::value?cout<<"True":cout<<"False"; cout << "\nChecking if Character array is same as Integer array? : " ; is_same<int[5],char[5]>::value?cout<<"True":cout<<"False"; return 0; }
출력
Checking if 1D array is same as 1D array (Different sizes) ? : False Checking if 1D array is same as 1D array? (Same sizes): True Checking If 2D array is same as 1D array? : False Checking if Character array is same as Integer array? : False
순위()
rank 함수는 전달된 배열의 순위를 반환하는 데 사용됩니다. 순위 배열의 차원을 의미합니다. 배열 순위의 정수 값을 반환합니다.
예
#include<type_traits> #include<iostream> using namespace std; int main(){ cout<<"Print rank for the following types of arrays : \n"; cout<<"integer : "<<rank<int>::value<<endl; cout<<"1D integer array (int[]) : "<< rank<int[5]>::value<<endl; cout<<"2D integer array (int[][]) : "<<rank<int[2][2]>::value<<endl; cout<<"3D integer array (int[][][]) : "<<rank<int[2][3][4]>::value<<endl; cout<<"1D character array : "<<rank<char[10]>::value<<endl; }
출력
Print rank for the following types of arrays : integer : 0 1D integer array (int[]) : 1 2D integer array (int[][]) : 2 3D integer array (int[][][]) : 3 1D character array : 1
범위()
C++의 extent() 메서드는 배열 차원의 크기를 반환합니다. 이 방법에는 배열과 차원이라는 두 가지 입력 매개변수가 있습니다.
예
#include<type_traits> #include<iostream> using namespace std; int main(){ cout<<"Printing the length of all dimensions of the array arr[2][45][5] :\n"; cout<<"1st dimension : "<<extent<int[2][45][5],0>::value<<endl; cout<<"2nd dimension : "<<extent<int[2][45][5],1>::value<<endl; cout<<"3rd dimension : "<<extent<int[2][45][5],2>::value<<endl; cout<<"4th dimension : "<<extent<int[2][45][5],3>::value<<endl; }
출력
Printing the length of all dimensions of the array arr[2][45][5] : 1st dimension : 2 2nd dimension : 45 3rd dimension : 5 4th dimension : 0
remove_extent()
remove_extent 함수는 다차원 배열의 차원을 제거하는 데 사용됩니다. 배열의 첫 번째 차원을 삭제합니다.
예
#include<type_traits> #include<iostream> using namespace std; int main(){ cout<<"Removing extent of the array arr[2][5][4] : \n"; cout<<"Initial rank : "<<rank<int[2][5][4]>::value<<endl; cout<<"The rank after removing 1 extent is : " ; cout << rank<remove_extent<int[20][10][30]>::type>::value << endl; cout << "length of 1st dimension after removal is :"; cout<<extent<remove_extent<int[20][10][30]>::type>::value << endl; }
출력
Removing extent of the array arr[2][5][4] : Initial rank : 3 The rank after removing 1 extent is : 2 length of 1st dimension after removal is :10
remove_all_extents()
이 함수는 배열의 모든 차원을 한 번에 제거하는 데 사용됩니다. 배열은 배열과 같은 변수로 변경됩니다.
예
#include<type_traits> #include<iostream> using namespace std; int main(){ cout<<"Removing all extents of the array arr[2][5][4] : \n"; cout<<"Initial rank : "<<rank<int[2][5][4]>::value<<endl; cout<<"The rank after removing all extents is : " ; cout << rank<remove_all_extents<int[20][10][30]>::type>::value << endl; cout << "length of 1st dimension after removal is :"; cout<<extent<remove_all_extents<int[20][10][30]>::type>::value << endl; }
출력
Removing all extents of the array arr[2][5][4] : Initial rank : 3 The rank after removing all extents is : 0 length of 1st dimension after removal is :0