我得到一个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;
}
}
}
这是ono类
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赋值)分配默认值,但是这个对象数组中的对象仍然是null确实试图在get / set属性中做同样的事情,但我仍然失败了。
请在解决方案中添加说明。
答案 0 :(得分: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();
我认为它会起作用。