gpt4 book ai didi

c# - IndexOutOfRangeException - 假设 0

转载 作者:太空宇宙 更新时间:2023-11-03 21:28:57 27 4
gpt4 key购买 nike

我正在处理一个数组,我想在其中添加它的一些值。在某些时候,为了仅通过一次计算即可完成此操作,它会要求数组外的索引。

有没有办法说,“如果索引在数组之外,则假定值为 0”?

有点像这样:

                   try
{

grid[x,y] = grid[x-1,y] + grid[x-1,y-1];
//This is simplified

x++;

}

catch (IndexOutOfRangeException)
{
grid[x - 1, y - 1] = 0;
}

最佳答案

为简单起见,假设您有一个整数数组,您可以考虑 extension method像下面这样:

static class ArrayExtension
{
static int SafeGetAt(this int[,] a, int i, int j)
{
if(i < 0 || i >= a.GetLength(0) || j < 0 || j >= a.GetLength(1))
return 0;
return a[i, j];
}
}

然后访问数组元素为

grid.SafeGetAt(x, y);

另一种方法是创建一个包装类,它在内部访问数组并实现 indexer。 .在这种情况下,您可以继续使用 [,]-syntax 来访问元素。


我不建议使用异常,异常很慢,在常规应用程序工作流程中应避免使用。

关于c# - IndexOutOfRangeException - 假设 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25246825/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com