0

我得到了一个null reference exception,我不知道如何解决它或者它为什么会发生。

private void editThisToolStripMenuItem_Click(object sender, EventArgs e)
{
    if (dataGridView1.SelectedRows.Count <= 1)
    {
        Form2 f2 = new Form2(dataGridView1.SelectedRows[0].Cells[1].Value.ToString(), Convert.ToInt32(dataGridView1.SelectedRows[0].Cells[2].Value));
        f2.ShowDialog();
        textBox2.Text = textBox1.Text.Replace(f2.oldtext, f2.newtext);
        this.dataGridView1.SelectedRows[0].Cells[3].Value = f2.newtext;
        this.dataGridView1.SelectedRows[0].Cells[3].Style.BackColor = Color.IndianRed;
    }
    else
    {
        ONOType[] ono = new ONOType[this.dataGridView1.SelectedRows.Count];
        int indexerr = 0;
        foreach (DataGridViewRow r in dataGridView1.SelectedRows)
        {
            ono[indexerr].newtext = this.dataGridView1.SelectedRows[indexerr].Cells[3].Value.ToString(); //null expection at ono[indexerr].newtext
            ono[indexerr].oldtext = this.dataGridView1.SelectedRows[indexerr].Cells[1].Value.ToString();
            ono[indexerr].offset = Convert.ToInt32(dataGridView1.SelectedRows[indexerr].Cells[0].Value);
            indexerr++;
        }
        Form3 f3 = new Form3(ono);
        f3.ShowDialog();
        indexerr = 0;
        for (int i = 0; i < dataGridView1.SelectedRows.Count; i++)
        {
            textBox2.Text = textBox1.Text.Replace(f3.nt[i].oldtext, f3.nt[i].newtext);
            this.dataGridView1.SelectedRows[i].Cells[3].Value = f3.nt[i].newtext;
            this.dataGridView1.SelectedRows[i].Cells[3].Style.BackColor = Color.IndianRed;
        }
    }
}

这是小野课

namespace IEditor
{
    public class ONOType
    {
        public string oldtext { get; set; }
        public string newtext { get; set; }
        public int offset { get; set; }
    }
}

问题开始于:

ONOType[] ono = new ONOType[this.dataGridView1.SelectedRows.Count];

它将此类类型的新数组全部定义为 null,这是我不想要的,可能是由关键字“new”引起的,没有“new”关键字,我得到了 comp。为该数组中的对象分配值时出错。

我所做的尝试是在这个类中添加一个 ctor,以便在减速时为每个成员的数组成员分配默认值(也就是为 oldtext/newtext/offset 分配值),但是这个对象数组中的对象仍然是空的,我确实尝试过在获取/设置属性上做同样的事情,但我仍然失败了。

请在解决方案中添加说明。

4

1 回答 1

3

您正在创建一个新的ONOType引用数组:

    ONOType[] ono = new ONOType[this.dataGridView1.SelectedRows.Count];

但是没有创建任何实际ONOType对象。它只是一个尚未引用任何内容的变量数组。

当您尝试将ono[indexerr].newtext元素分配ono[indexerr]为空引用时。

如果你这样做了:

    ono[indexerr] = new ONOType();
    ono[indexerr].newtext = this.dataGridView1.SelectedRows[indexerr].Cells[3].Value.ToString();

我认为它会起作用。

于 2013-03-15T02:03:17.817 回答