C#中如何捕获索引超出范围异常?

2023年 8月 27日 65.1k 0

C#中如何捕获索引超出范围异常?

当您尝试访问索引超出数组范围的元素时,会发生 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 :0

登录后复制

代码将产生错误 -

System.IndexOutOfRangeException −Index was outside the bounds of the array.

登录后复制

以上就是C#中如何捕获索引超出范围异常?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论