Maison >développement back-end >Tutoriel C#.Net >Comment intercepter l'exception d'index hors plage en C# ?

Comment intercepter l'exception d'index hors plage en C# ?

WBOY
WBOYavant
2023-08-25 22:13:091947parcourir

Comment intercepter lexception dindex hors plage en C# ?

IndexOutOfRangeException se produit lorsque vous essayez d'accéder à un élément dont l'index est en dehors de la plage du tableau.

Supposons que ce qui suit soit notre tableau. Il comporte 5 éléments -

int [] n = new int[5] {66, 33, 56, 23, 81};

Maintenant, si vous essayez d'accéder à un élément avec un index supérieur à 5, une exception IndexOutOfRange sera levée -

for (j = 0; j < 10; j++ ) {
Console.WriteLine("Element[{0}] = {1}", j, n[j]);
}

Dans l'exemple ci-dessus, nous essayons d'accéder à l'index 5 ci-dessus, donc l'erreur suivante se produit -

System.IndexOutOfRangeException : l'index dépasse la plage du tableau.

Voici le code complet -

Exemple

Démo en direct

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);
         }
      }
   }
}

Sortie

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

Le code produira des erreurs -

System.IndexOutOfRangeException &minus;Index was outside the bounds of the array.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer