一些反编译器观察
System.Data.DataRowCollection.Add
在这两种情况下,都使用了不同的方法重载。
第一种方法使用:
public void Add(DataRow row)
{
this.table.AddRow(row, -1);
}
第二种方法将使用:
public DataRow Add(params object[] values)
{
int record = this.table.NewRecordFromArray(values);
DataRow dataRow = this.table.NewRow(record);
this.table.AddRow(dataRow, -1);
return dataRow;
}
现在,看看这个小野兽:
internal int NewRecordFromArray(object[] value)
{
int count = this.columnCollection.Count;
if (count < value.Length)
{
throw ExceptionBuilder.ValueArrayLength();
}
int num = this.recordManager.NewRecordBase();
int result;
try
{
for (int i = 0; i < value.Length; i++)
{
if (value[i] != null)
{
this.columnCollection[i][num] = value[i];
}
else
{
this.columnCollection[i].Init(num);
}
}
for (int j = value.Length; j < count; j++)
{
this.columnCollection[j].Init(num);
}
result = num;
}
catch (Exception e)
{
if (ADP.IsCatchableOrSecurityExceptionType(e))
{
this.FreeRecord(ref num);
}
throw;
}
return result;
}
特别要注意this.columnCollection[i][num] = value[i];
,它将调用:
public DataColumn this[int index]
{
get
{
DataColumn result;
try
{
result = (DataColumn)this._list[index];
}
catch (ArgumentOutOfRangeException)
{
throw ExceptionBuilder.ColumnOutOfRange(index);
}
return result;
}
}
向前看,我们发现它实际上_list
是一个ArrayList
:
private readonly ArrayList _list = new ArrayList();
结论
为了总结上面的内容,如果你使用dtDeptDtl.Rows.Add();
而不是dtDeptDtl.Rows.Add(dr2);
,你会得到一个性能下降,随着列数的增加,它会呈指数级增长。降级的责任线是对方法的调用,该NewRecordFromArray
方法在ArrayList
.
注意:如果您向表中添加 8 列并在for
循环 1000000 次中进行一些测试,这可以很容易地测试。