在 C# .NET 中,array.Length 与 list.Count 的原因是什么?

发布于 2024-07-29 16:44:07 字数 286 浏览 0 评论 0原文

可能的重复:
集合中的计数、长度与大小

我是否忽略了“长度”和“计数”之间的语义差异,或者 .NET Framework 中的某些实现细节是否需要这些相似概念的不同名称? 鉴于对命名和框架中其他所有内容的密切关注,必须有一个很好的解释。

Possible Duplicate:
count vs length vs size in a collection

Am I overlooking a semantic difference between "Length" and "Count", or did perhaps some implementation detail in the .NET Framework require different names for these similar concepts? Given the close attention that was paid to naming and everything else in the framework, there must be a good explanation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南烟 2024-08-05 16:44:07

实际上这些是相似但不完全相同的概念。 由于数组的长度是静态的,并且它的内存是一次性分配的(int[] intarray = new int[10]; // allocates the memory for 10 ints),因此 Length 属性是相当静态的。 否则,像列表这样的枚举可能事先不知道它们的长度,因此属性计数将以某种方式“计算”长度(您可能会遍历可枚举中的所有关联元素)。 这就是基本的区别。

Actually these are similar but not identical concepts. Since an array's length is static and its memory gets allocated once and for all (int[] intarray = new int[10]; // allocates the memory for 10 ints) the Length property is quite static. Otherwise Enumerables like a List might not know their Length beforehand so the Property Count will in some way "count" the length (you might iterate through all associated elements in an enumerable). That's the basic difference.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文