- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有什么区别或有什么区别:
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/
在 的 React 组件中菜单,我需要设置selected反射(reflect)应用程序状态的选项的属性。 在 render() , optionState从状态所有者传递给 SortMenu 组件
我是初级 Ruby-mysql 程序员,我想知道如何使我的(存储过程)查询结果更快.. 这是我的存储过程我正在使用 SQL_CACHE.. 但我不确定.. 缓存使我的过程更快.. : ( DROP
我一直在 Python 中进行套接字编程,以使用 select.select(rfile, wfile, xlist[, timeout]) 处理由已连接的客户端套接字列表发出的请求,并且我还想用 J
我试图通过用空格填充文本来创建下拉列表中的列效果,如下例所示: [Aux1+1] [*] [Aux1+1] [@Tn=PP] [Main] [*] [Main A
我为 MySQL 编写了以下查询: SELECT subquery.t1_column1, subquery.t2_id, MAX(subquery.val) FROM ( S
为什么我们要用 select 标签来编写.attr('selected','selected') 例如: $('#countryList option').filter(function () {
Lokalizacja: Gdańsk Rzeszów Wrocław 不知道发生了什么,但在那种情况下没有选择的选项,我必须从列表中选择一些东西。当我从选
我的表单中有两个选择字段。第一个是单选,另一个是多选。现在我想做的是根据单选中所选的选项,使用给定的数据选择多选中的选项。为此,我在单选更改时触发 ajax 请求: $.ajax({ type
我在 Firefox 5 中发现了一个奇怪的错误(我现在无法访问 4)。但是,我认为它可能在 Firefox 4 中工作,因为我刚买了一台新电脑,而且我不记得以前见过这个错误。 我有几个选择框。所选值
此 SQL 有何不同: 第一个: select * from table_1 a join table_2 b on a.id = b.acc_id 第二个: select * f
预选 的最佳做法是什么?在 ? 根据不同的网站,两者都有效。但是哪个更好呢?最兼容? Foo Bar 最佳答案 如果您正在编写 XHTML,则 selected="selected" 是必需的。 如
我使用 Angular JS 创建了一个多选选择框:下面是相同的代码: JS: $scope.foobars = [{ 'foobar_id': 'foobar01', 'name':
我在 jqGrid 中有几列 edittype="select"。如何读取特定行中当前选定值的选项值? 例如:当我提供以下选项时,如何获得 FedEx 等的“FE” editoption: { val
这是我更大问题的精简查询,但要点是我试图内部联接到一个选择,其中选择受到外部选择的限制。那可能吗?我在内部选择上收到有关多部分标识符 S.Item 和 S.SerialNum 的错误。 要点是这样的,
如果chat.chat_type IS NULL,我想选择user.*,但如果chat.chat_type = 1 我想选择组。* SELECT CASE WHEN ch
我正在编写一个小脚本来测试表单在提交之前是否已被更改。所以我可以使用普通输入(文本、文本区域等): if(element.defaultValue != element.value) { al
我正在尝试为 Prototype 编写一个插件,用户在其中单击下拉菜单并将其替换为多选元素。我快完成了。在用户选择他们想要显示的内容并将表单提交到同一页面之前,一切都很好。我正在使用 PHP 来使用
你如何在 MongoDB 中进行嵌套选择,类似于 SELECT id FROM table1 WHERE id IN (SELECT id FROM table2) 最佳答案 MongoDB 尚不具备
我有以下用于选择下拉列表的代码: {{unit.Text}} UnitOfMeasurements 数组中的每一项看起来像这样: Selected: false Text: "lb" Va
我正在尝试使用[选定]和[ngValue]来设置表单中包含对象的选择标记的默认值。但出于某种原因,它们似乎无法相提并论。。示例代码:。这段代码最终只显示空白作为缺省值。如果删除[ngValue],它就
我是一名优秀的程序员,十分优秀!