인덱스가 배열 범위를 벗어나는 요소에 액세스하려고 하면 IndexOutOfRangeException이 발생합니다.
다음이 우리의 배열이라고 가정해보세요. 5개의 요소가 있습니다. -
int [] n = new int[5] {66, 33, 56, 23, 81};
이제 인덱스가 5보다 큰 요소에 액세스하려고 하면 IndexOutOfRange 예외가 발생합니다. -
for (j = 0; j < 10; j++ ) { Console.WriteLine("Element[{0}] = {1}", j, n[j]); }
위의 예에서는 위의 인덱스 5에 액세스하려고 하므로 다음 오류가 발생합니다.
System.IndexOutOfRangeException: 인덱스가 배열 범위를 초과합니다.
전체 코드입니다. -
라이브 데모
using System; namespace Demo { class MyArray { static void Main(string[] args) { try { int [] n = new int[5] {66, 33, 56, 23, 81}; int i,j; // error: IndexOutOfRangeException for (j = 0; j < 10; j++ ) { Console.WriteLine("Element[{0}] = {1}", j, n[j]); } Console.ReadKey(); } catch (System.IndexOutOfRangeException e) { Console.WriteLine(e); } } } }
Element[0] = 66 Element[1] = 33 Element[2] = 56 Element[3] = 23 Element[4] = 81 System.IndexOutOfRangeException: Index was outside the bounds of the array. at Demo.MyArray.Main (System.String[] args) [0x00019] in <6ff1dbe1755b407391fe21dec35d62bd>:0
코드에서 오류가 발생합니다. -
System.IndexOutOfRangeException −Index was outside the bounds of the array.
위 내용은 C#에서 범위를 벗어난 인덱스 예외를 잡는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!