gpt4 book ai didi

c# - SelectedRows.Count 与 Rows.GetRowCount(DataGridViewElementStates.Selected)

转载 作者:行者123 更新时间:2023-11-30 22:25:07 30 4
gpt4 key购买 nike

有什么区别或有什么区别:

myDgv.SelectedRows.Count 

对比

myDgv.Rows.GetRowCount(DataGridViewElementStates.Selected)

在 DataGridView 的上下文中,Windows 窗体?

最佳答案

我认为在您在这里提到的特定情况下,除了处理 DataGridView 数据的顺序之外,这两个选项之间几乎没有区别。如果您正在保存用于从中获取 Count 的中间对象,您可能会担心 SelectedRows 在进行引用时向您提供静态快照,但由于这两个选项都直接调用另一个方法,该方法应该这真的是一个因素。

每当您真的对如何深入了解此类内容感到好奇时,您可以打开 ILDASM 并浏览到您的 GAC 以查看调用的实际工作方式。

从某种程度上讲,使用 SelectedRows 和 Rows.GetCount() 之间的区别在于,我们要么获取过滤后的集合并检查其大小,要么获取整个集合并将其过滤为一个子集,然后我们再获取其大小取回。我们的初始使用 IL 向我们展示的内容几乎证实了这一点。

.method public hidebysig static void  testDG() cil managed
{
// Code size 34 (0x22)
.maxstack 2
.locals init ([0] class [System.Windows.Forms]System.Windows.Forms.DataGridView dgvTest,
[1] int32 myNum,
[2] int32 otherum)
IL_0000: nop
IL_0001: newobj instance void [System.Windows.Forms]System.Windows.Forms.DataGridView::.ctor()
IL_0006: stloc.0
IL_0007: ldloc.0
IL_0008: callvirt instance class [System.Windows.Forms]System.Windows.Forms.DataGridViewSelectedRowCollection [System.Windows.Forms]System.Windows.Forms.DataGridView::get_SelectedRows()
IL_000d: callvirt instance int32 [System.Windows.Forms]System.Windows.Forms.BaseCollection::get_Count()
IL_0012: stloc.1
IL_0013: ldloc.0
IL_0014: callvirt instance class [System.Windows.Forms]System.Windows.Forms.DataGridViewRowCollection [System.Windows.Forms]System.Windows.Forms.DataGridView::get_Rows()
IL_0019: ldc.i4.s 32
IL_001b: callvirt instance int32 [System.Windows.Forms]System.Windows.Forms.DataGridViewRowCollection::GetRowCount(valuetype [System.Windows.Forms]System.Windows.Forms.DataGridViewElementStates)
IL_0020: stloc.2
IL_0021: ret
} // end of method Program::testDG

正如您可能怀疑的那样,尽管这回避了这两个较低级别调用的作用的问题。

在这种情况下,DataGridView 上的 Rows 属性创建了 DataGridViewsRowCollection 的一个实例并将其传回,因为它映射到 get_Rows。

.method public hidebysig specialname instance class System.Windows.Forms.DataGridViewRowCollection 
get_Rows() cil managed
{
// Code size 27 (0x1b)
.maxstack 8
IL_0000: ldarg.0
IL_0001: ldfld class System.Windows.Forms.DataGridViewRowCollection System.Windows.Forms.DataGridView::dataGridViewRows
IL_0006: brtrue.s IL_0014
IL_0008: ldarg.0
IL_0009: ldarg.0
IL_000a: callvirt instance class System.Windows.Forms.DataGridViewRowCollection System.Windows.Forms.DataGridView::CreateRowsInstance()
IL_000f: stfld class System.Windows.Forms.DataGridViewRowCollection System.Windows.Forms.DataGridView::dataGridViewRows
IL_0014: ldarg.0
IL_0015: ldfld class System.Windows.Forms.DataGridViewRowCollection System.Windows.Forms.DataGridView::dataGridViewRows
IL_001a: ret
} // end of method DataGridView::get_Rows

当我们查看 DataGridView 上的 SelectedRows 属性时,我们发现它最初所做的不仅仅是返回一个集合,但在主 try block 中我们再次看到我们的“get_Rows”调用 (IL_0045)。

.try
{
IL_0035: br.s IL_0056
IL_0037: ldloc.3
IL_0038: callvirt instance object [mscorlib]System.Collections.IEnumerator::get_Current()
IL_003d: unbox.any [mscorlib]System.Int32
IL_0042: stloc.1
IL_0043: ldloc.0
IL_0044: ldarg.0
IL_0045: call instance class System.Windows.Forms.DataGridViewRowCollection System.Windows.Forms.DataGridView::get_Rows()
IL_004a: ldloc.1
IL_004b: callvirt instance class System.Windows.Forms.DataGridViewRow System.Windows.Forms.DataGridViewRowCollection::get_Item(int32)
IL_0050: callvirt instance int32 System.Windows.Forms.DataGridViewSelectedRowCollection::Add(class System.Windows.Forms.DataGridViewRow)
IL_0055: pop
IL_0056: ldloc.3
IL_0057: callvirt instance bool [mscorlib]System.Collections.IEnumerator::MoveNext()
IL_005c: brtrue.s IL_0037
IL_005e: leave.s IL_0074
} // end .try

这表明我们正在为我们的两个选择执行相同的检索和过滤操作,并且可以合理地预期执行它们的“成本”是相同的。

如果您注意到这些调用的性能问题,您可以运行一些测试来查看是否存在差异,但基于 IL,如果您发现这两个调用之间有任何明显的区别,我会感到惊讶

关于c# - SelectedRows.Count 与 Rows.GetRowCount(DataGridViewElementStates.Selected),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12469484/

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