微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – DictionaryBase和Dictionary之间的差异

任何人都可以告诉我DictionaryBase和通用词典< TKey,TValue>之间的区别,除了DictionaryBase是一个抽象类!它们都是强类型的,我在某处读到泛型类在性能上优于非泛型类,应该是首选,那么DictionaryBase的确切用法是什么呢?
这两个课程几乎相同!

任何形式的帮助将不胜感激

谢谢

解决方法

Dictionarybase是实现非通用IDictionary接口的基类,而Dictionary是实现通用IDictionary接口的字典的通用版本.使用仿制药比非仿制药更受欢迎.

我认为这会更有帮助When to use generics?

Using generic collections is generally recommended,because you gain
the immediate benefit of type safety without having to derive from a
base collection type and implement type-specific members. Generic
collection types also generally perform better than the corresponding
nongeneric collection types (and better than types that are derived
from nongeneric base collection types) when the collection elements
are value types,because with generics there is no need to Box the
elements.

也是经过,Introduction to Generics

Generic classes and methods combine reusability,type safety and efficiency in a way that their non-generic counterparts cannot. Generics are most frequently used with collections and the methods that operate on them. Version 2.0 of the .NET Framework class library provides a new namespace,System.Collections.Generic,which contains several new generic-based collection classes. It is recommended that all applications that target the .NET Framework 2.0 and later use the new generic collection classes instead of the older non-generic counterparts

原文地址:https://www.jb51.cc/csharp/238965.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐