C의 함수에서 2D 배열 반환
C에서 2D 배열로 작업할 때 제공된 코드에 제시된 접근 방식은 다음과 같습니다. 추천합니다. 대신 다음 함수 구현을 고려하세요.
int** create2DArray(unsigned height, unsigned width) { int** array2D = 0; array2D = new int*[height]; for (int h = 0; h < height; h++) { array2D[h] = new int[width]; for (int w = 0; w < width; w++) { // Initialize array elements as needed } } return array2D; }
이 함수는 원하는 2D 배열의 높이와 너비를 부호 없는 정수로 가져와 이에 대한 메모리를 동적으로 할당합니다. 외부 배열이 먼저 할당된 다음 루프 내에서 내부 배열이 할당됩니다.
메모리 누수를 방지하려면 사용 후에는 메모리 할당을 해제해야 합니다. 요소를 반복하고 내부 배열과 외부 배열을 모두 삭제하면 됩니다.
사용 예:
int height = 15; int width = 10; int** my2DArray = create2DArray(height, width); // Use the array as needed // ... for (int h = 0; h < height; h++) { delete [] my2DArray[h]; } delete [] my2DArray; my2DArray = 0; // Set pointer to null to prevent dangling pointer
위 내용은 C 함수에서 2D 배열을 안전하게 반환하고 관리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!