构造函数 C# 中的 IndexOutOfRange

本文关键字:IndexOutOfRange 中的 构造函数 | 更新日期: 2023-09-27 18:33:18

我有一个简单的类,像这样:

public class myClass
{
    public static readonly string[] stringArray= { "one", "two" };
    private string myString;
    public myClass (int _index)
    {
       if(_index > (stringArray.Length - 1) || _index < 0)
       {
           throw new IndexOutOfRangeException("Bad index.");
       }
       else
       {
           myString = stringArray[_index];
       }
    }
}

我正在运行简单的构造函数:myClass example = myClass(5); 我有错误。它不应该离开构造函数而不尝试创建新对象吗?

我不明白投掷在那里是如何工作的。


编辑:对不起,我犯了一个错误。if 部分中应该有 stringArray.Length -1

构造函数 C# 中的 IndexOutOfRange

> myString 为 null,因此当您访问 Length 属性时,您会得到一个 NullReferenceException。

我的猜测是你想要:

if(_index > (stringArray.Length - 1) || _index < 0)

因为您将 5 作为_index传递给构造函数,因此以下条件将为真

if(_index > (stringArray.Length - 1) || _index < 0)

因为数组的长度是 2 和 5> 1。 这会导致代码引发IndexOutOfRangeException,从而阻止构造函数返回对象的实例。 此外,如果您在new myClass(5)周围没有try-catch,则异常将冒泡并导致正在运行的应用程序崩溃。

你的代码中有拼写错误。 您需要获取数组的长度而不是字符串。

代码行应:

 if(_index > (stringArray.Length - 1) || _index < 0)