在 C# .NET 中,array.Length 与 list.Count 的原因是什么?
可能的重复:
集合中的计数、长度与大小
我是否忽略了“长度”和“计数”之间的语义差异,或者 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上这些是相似但不完全相同的概念。 由于数组的长度是静态的,并且它的内存是一次性分配的(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.