C# 编写一个程序,引发一个IndexOutOfRangeException异常,并捕捉处理。

2021/11/4 17:13:54

本文主要是介绍C# 编写一个程序,引发一个IndexOutOfRangeException异常,并捕捉处理。,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

编写一个程序,引发一个IndexOutOfRangeException异常,并捕捉处理。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace solution_8
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] array = new int[2];
            for (int i = 0; i <= 2; i++)
            {
                try
                {
                    array[i] = i;
                    Console.WriteLine("array[{0}]={1},没有引发异常", i, i);
                }
                catch (Exception e)
                {
                    Console.Write("array[{0}]={1},引发了异常:", i, i);
                    Console.WriteLine(e.Message);
                }
                finally
                {
                    Console.WriteLine("赋值完成,并运行了finally语句块");
                }
            }
        }
    }
}



这篇关于C# 编写一个程序,引发一个IndexOutOfRangeException异常,并捕捉处理。的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程